-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpackage.json
55 lines (55 loc) · 1.44 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
52
53
54
55
{
"name": "goingnative",
"version": "2.1.0",
"description": "A NodeSchool style workshopper for learning how to write native Node.js addons",
"main": "goingnative.js",
"bin": "./bin/goingnative",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/rvagg/goingnative.git"
},
"scripts": {
"lint": "standard && jshint --exclude=node_modules .",
"test": "npm run lint && tape test/**/**/*.js",
"postinstall": "node postinstall.js",
"release": "standard-version"
},
"author": "Rod Vagg <[email protected]> (https://github.com/rvagg)",
"license": "MIT",
"dependencies": {
"after": "~0.8.1",
"bindings": "^1.5.0",
"chalk": "^4.1.0",
"colors-tmpl": "~1.0.0",
"core-util-is": "~1.0.2",
"cpr": "^1.1.1",
"getos": "^3.2.1",
"js-yaml": "^4.1.0",
"mkdirp": "^1.0.4",
"nan": "^2.14.0",
"node-addon-api": "^4.0.0",
"node-gyp": "^7.0.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"varstring": "~0.2.0",
"workshopper-adventure": "^7.0.0",
"workshopper-boilerplate": "~1.1.2",
"workshopper-exercise": "^3.0.1",
"workshopper-hooray": "~1.1.0",
"workshopper-more": "~1.0.1"
},
"devDependencies": {
"jshint": "^2.11.1",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"standard": "^16.0.3",
"standard-version": "^9.3.1",
"tape": "^5.0.1"
},
"standard-version": {
"bumpFiles": [
"package.json"
]
}
}