-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
31 lines (31 loc) · 962 Bytes
/
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
{
"name": "priv-js",
"description": "Storage of blocks functions that generats BEMJSON",
"author": "Denis Chistyakov <[email protected]>",
"version": "1.1.0",
"repository": "https://github.com/maxvipon/priv-js",
"licence": "MIT",
"contributors": [
{
"name": "Maxim Ponomarev",
"email": "[email protected]"
}
],
"devDependencies": {
"mocha": "1.x",
"chai": "1.x",
"istanbul": "0.2.x",
"jshint": "2.x",
"jscs": "1.4.x"
},
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "npm run-script jshint && npm run-script check-style && npm run-script unit-test-coverage",
"jshint": "./node_modules/.bin/jshint .",
"unit-test": "./node_modules/.bin/mocha -u bdd -R spec --recursive test",
"unit-test-coverage": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha -- -u bdd -R spec --recursive test",
"check-style": "./node_modules/jscs/bin/jscs ."
}
}