forked from atom/neon-cli
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "neon-cli",
"version": "0.1.8",
"description": "Build and load native Rust/Neon modules.",
"author": "Dave Herman <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/rustbridge/neon-cli.git"
},
"main": "lib/index.js",
"bin": {
"neon": "./bin/cli.js"
},
"license": "MIT",
"dependencies": {
"chalk": "^1.1.1",
"fs-extra": "^0.26.3",
"git-config": "0.0.7",
"handlebars": "^4.0.3",
"in-publish": "^2.0.0",
"inquirer": "^0.11.0",
"minimist": "^1.2.0",
"rsvp": "^3.1.0",
"semver": "^5.1.0",
"shallow-copy": "0.0.1",
"toml": "^2.3.0",
"validate-npm-package-license": "^3.0.1",
"validate-npm-package-name": "^2.2.2"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015-node4": "^2.0.2",
"babel-preset-stage-3": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.4.1",
"mocha": "^2.3.4",
"nexpect": "^0.5.0",
"tmp": "0.0.28"
},
"scripts": {
"test": "npm run transpile && mocha",
"transpile": "rm -rf lib && babel src -qd lib",
"prepublish": "in-install || npm run transpile"
},
"bugs": {
"url": "https://github.com/rustbridge/neon-cli/issues"
},
"homepage": "https://github.com/rustbridge/neon-cli"
}