-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
30 lines (30 loc) · 834 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
{
"name": "swot-js",
"version": "1.0.7",
"description": "js implementation of swot",
"main": "lib/swot.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha",
"check-coverage": "istanbul check-coverage --statements 100 --branches 50 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"patch-release": "npm version patch && npm publish && git push --follow-tags"
},
"author": "",
"license": "MIT",
"devDependencies": {
"codecov.io": "0.1.6",
"istanbul": "0.4.5",
"mocha": "^1.21.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": "[email protected]:theotow/swot-js.git",
"dependencies": {
"chai": "^1.9.2",
"underscore": "^1.7.0",
"walk": "^2.3.4"
}
}