-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
40 lines (40 loc) · 1.19 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
{
"name": "rubles",
"version": "0.2.0",
"description": "Стоимость прописью",
"keywords": [
"ruble",
"numeral"
],
"author": "Alexey Simonenko <[email protected]>",
"homepage": "http://simonenko.su/projects/rubles",
"main": "./lib/rubles",
"repository": {
"type": "git",
"url": "https://github.com/meritt/rubles.git"
},
"scripts": {
"build": "uglifyjs lib/rubles.js -o lib/rubles.min.js -m -c",
"mocha": "mocha --reporter dot",
"lint": "eslint lib/rubles.js test/test.js",
"lib-cov": "istanbul instrument --output lib-cov --no-compact --variable global.__coverage__ lib",
"prepush": "npm run lint",
"pretest": "npm run lint && npm run build",
"posttest": "npm run lib-cov && COVERAGE=1 ISTANBUL_REPORTERS=lcovonly mocha --reporter mocha-istanbul && cat lcov.info | coveralls && rm -rf lib-cov lcov.info",
"test": "npm run mocha"
},
"devDependencies": {
"coveralls": "^2.11.4",
"eslint": "^1.4.1",
"husky": "^0.10.1",
"istanbul": "^0.3.19",
"mocha": "^2.3.2",
"mocha-istanbul": "^0.2.0",
"should": "^7.1.0",
"uglify-js": "^2.4.24"
},
"engines": {
"node": "^0.12.7"
},
"license": "MIT"
}