-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "translitbg",
"version": "2.0.0",
"description": "Bulgarian to Latin transliteration (Транслитерация на български с латински букви)",
"main": "src/translitbg.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp test",
"build": "gulp build",
"lint": "gulp lint"
},
"repository": {
"type": "git",
"url": "https://github.com/petarov/translitbg.js.git"
},
"keywords": [
"transliteration",
"transliterate",
"bulgarian",
"cyrillic",
"cyr2lat",
"romanization",
"транслитерация",
"транслит"
],
"author": "Petar Petrov",
"license": "MIT",
"bugs": {
"url": "https://github.com/petarov/translitbg.js/issues"
},
"homepage": "https://github.com/petarov/translitbg.js#readme",
"devDependencies": {
"chai": "^4.2.0",
"gulp": "^5.0.0",
"gulp-concat": "^2.6.0",
"gulp-header": "^2.0.9",
"gulp-jest": "https://registry.npmjs.org/@jacobq/gulp-jest/-/gulp-jest-4.0.3-PR65.tgz",
"gulp-jshint": "^2.0.1",
"gulp-mocha": "^9.0.0",
"gulp-uglify": "^3.0.2",
"jest-cli": "^29.0.1",
"jest-junit": "^16.0.0",
"jshint": "^2.9.2",
"mocha": "^10.0.0",
"run-sequence": "^2.2.1"
},
"jest-junit": {
"outputDirectory": "test-results/jest",
"outputName": "results.xml"
}
}