-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 881 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 881 Bytes
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
{
"name": "polytest",
"version": "0.0.1",
"author": "Jeff Escalante <jeff@carrotcreative.com>",
"description": "test multiple versions of node dependencies",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/carrot/polytest.git"
},
"main": "lib",
"devDependencies": {
"chai": "2.x",
"chai-fs": "git://github.com/jenius/chai-fs",
"coffee-script": "1.9.x",
"coffeelint": "1.x",
"istanbul": "0.3.x",
"mocha": "2.x",
"mocha-lcov-reporter": "0.0.2"
},
"scripts": {
"test": "npm run lint && mocha",
"lint": "find lib/ -name '*.coffee' | xargs coffeelint",
"coverage": "make build; istanbul cover _mocha --report html -- -R spec && open coverage/index.html && make unbuild"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"npm": "^2.9.0",
"rimraf": "^2.3.3"
}
}