-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 loc) · 2.2 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "transliteration.crh",
"version": "0.3.0",
"description": "Transliteration tool for Crimean Tatar language (Latin and Cyrillic alphabets)",
"main": "./lib/transliteration.crh.js",
"bin": {
"crh": "./bin/crh"
},
"engines": {
"node": ">=4"
},
"scripts": {
"browserify": "browserify lib/bundle.js --debug | exorcist ./dist/transliteration.crh.js.map > ./dist/transliteration.crh.js",
"uglify": "uglifyjs ./dist/transliteration.crh.js --compress --mangle --in-source-map ./dist/transliteration.crh.js.map --source-map ./dist/transliteration.crh.min.js.map --source-map-url transliteration.crh.min.js.map -o ./dist/transliteration.crh.min.js",
"dist": "npm run browserify && npm run uglify",
"lint": "eslint .",
"test": "npm run lint && npm run test-unit-coverage",
"test-browser": "karma start --browsers Chrome",
"test-unit": "mocha -u bdd -R spec test/*.test.js",
"test-unit-coverage": "istanbul cover _mocha -- -u bdd -R spec test/*.test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/prosvita/crh.transliteration.git"
},
"keywords": [
"transliterate",
"transliteration",
"crh",
"crimeantatar",
"crimean tatar",
"qırımtatar",
"qırım",
"Къырымтатар",
"Кримськотатарська",
"Крымскотатарский",
"Крымско-татарский"
],
"author": {
"name": "Pavlo Bashynskyi",
"email": "[email protected]",
"url": "https://github.com/levonet"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/prosvita/crh.transliteration/issues"
},
"homepage": "https://github.com/prosvita/crh.transliteration",
"dependencies": {
"commander": "^2.9.0"
},
"devDependencies": {
"browserify": "^13.1.1",
"chai": "^3.5.0",
"eslint": "^3.10.1",
"exorcist": "^0.4.0",
"istanbul": "^0.4.5",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-safari-launcher": "^1.0.0",
"mocha": "^3.1.2",
"uglify-js": "^2.7.4"
},
"files": [
"bin",
"dist",
"lib"
]
}