-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.14 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
46
47
48
49
50
51
{
"name": "nad",
"version": "0.2.1",
"description": "Node Addon Developer, a tool to inject your addon code into a copy of the node codebase in order to integrate with IDEs and debuggers easily.",
"main": "index.js",
"bin": {
"nad": "./bin/nad.sh"
},
"scripts": {
"docme": "docme README.md -- --configure .jsdocrc",
"test": "set -e; for t in test/*.js; do node $t; done"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/nad.git"
},
"homepage": "https://github.com/thlorenz/nad",
"dependencies": {
"gyp-reader": "0.0.2",
"minimist": "~1.1.0",
"mkdirp": "~0.5.0",
"npmlog": "~0.1.1",
"semver": "~3.0.1",
"update-section": "~0.3.3",
"xtend": "~4.0.0",
"yawn": "~0.1.1"
},
"devDependencies": {
"tap": "~0.4.3"
},
"keywords": [
"addon",
"C",
"C++",
"binding",
"node-gyp",
"xcode"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/nad/blob/master/LICENSE"
},
"engine": {
"node": ">=0.8"
}
}