-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 926 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
{
"name": "make-module",
"version": "3.0.0",
"description": "create a module from a string of code",
"repository": "[email protected]:bttmly/make-module.git",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha ./test/index-test.js",
"cover": "node --harmony ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- ./test/index-test.js -R spec",
"codecovio": "npm run cover; cat ./coverage/lcov.info | ./node_modules/codecov.io/bin/codecov.io.js --verbose"
},
"keywords": [
"module",
"compile",
"require",
"exports"
],
"author": "Nick Bottomley (github.com/bttmly)",
"license": "MIT",
"devDependencies": {
"chai": "^1.10.0",
"codecov.io": "0.0.8",
"istanbul": "^0.3.5",
"mocha": "^2.1.0"
},
"dependencies": {
"callsite": "^1.0.0",
"object-assign": "^4.0.1",
"strip-bom": "^2.0.0"
}
}