-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 956 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
32
33
34
35
36
37
{
"name": "k",
"version": "0.0.1",
"description": "build systems, revisited",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.test.js --reporter spec --slow 400",
"coverage": "rm -rf lib-cov/ && jscoverage lib lib-cov && ./node_modules/.bin/mocha tests/*.test.js --reporter html-cov > coverage.html && open coverage.html && rm -rf lib-cov",
"docs": "docco lib/*.js"
},
"dependencies": {
"underscore": "^1.6.0",
"underscore.deferred": "^0.4.0",
"async": "^0.6.2",
"burrito": "^0.2.12",
"glob-whatev": "^0.1.8",
"uglify-js": "^1.3.4",
"wrench": "^1.5.8",
"should": "^3.2.0",
"mocha": "^1.18.2"
},
"devDependencies": {
"mocha": "*",
"should": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/threepointone/k.git"
},
"keywords": [
"build",
"systems",
"deferreds"
],
"author": "Sunil Pai",
"license": "BSD"
}