-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 724 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 724 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
{
"name": "required",
"version": "1.0.0",
"description": "traverse your script and identify dependencies from requires",
"main": "index.js",
"bin": {
"required": "./bin/required"
},
"scripts": {
"test": "mocha",
"test-generate": "GENERATE=true npm test",
"coverage": "NODE_ENV=test cover run ./node_modules/mocha/bin/_mocha && cover report html"
},
"repository": {
"type": "git",
"url": "git://github.com/shtylman/node-required.git"
},
"keywords": [
"require",
"modules"
],
"dependencies": {
"detective": "3.1.0"
},
"devDependencies": {
"mocha": "~1.5.0",
"cycle": "1.0.0"
},
"author": "Roman Shtylman <shtylman@gmail.com>",
"license": "MIT"
}