-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "wantsit",
"version": "2.1.3",
"description": "Super lightweight dependency injection",
"main": "index.js",
"scripts": {
"lint": "standard",
"test": "mocha --recursive --reporter=nyan",
"test:coverage": "istanbul --include-all-sources cover _mocha --recursive",
"test:coverage:check": "istanbul --include-all-sources cover _mocha --recursive && istanbul check-coverage --statement 100 --branch 100 --function 100",
"coveralls": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"repository": {
"type": "git",
"url": "git://github.com/achingbrain/node-wantsit.git"
},
"dependencies": {
"async": "^1.4.0",
"check-types": "^4.0.0",
"toarray": "^0.0",
"underscore.string": "^3.0.3"
},
"devDependencies": {
"chai": "^3.2.0",
"coveralls": "^2.8",
"istanbul": "^0.3.0",
"mocha": "^2.0",
"pre-commit": "^1.0.6",
"proxyquire": "^1.0",
"sinon": "^1.8",
"standard": "^5.3.1",
"testsuite": "^1.0"
},
"pre-commit": [
"lint",
"test:coverage:check"
],
"standard": {
"global": [
"describe",
"it",
"expect"
]
}
}