forked from s-a/iron-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
{
"name": "iron-node",
"version": "3.0.18",
"description": "Debug Node.js code on the fly with Chrome Developer Tools on Linux, Windows and OS X.",
"main": "index.js",
"bin": {
"iron-node": "./bin/run.js"
},
"preferGlobal": true,
"scripts": {
"start": "node bin/run.js",
"mdlint": "rem node_modules/.bin/mdlint glob \"docs/*.md\"",
"test": "node node_modules/mocha/bin/_mocha",
"test2": "node bin/run.js ./../test.js",
"changelog": "node node_modules/changelog/bin/changelog.js all --markdown > ./CHANGELOG.md",
"dev": "node bin/run.js",
"node-sass-test": "node_modules/.bin/electron ./app ..\\require\\node-sass.js",
"pipe-test": "echo var i = 0;debugger; | node bin/run.js",
"pipe-test-coffee": "coffee -p ./../require/app.coffee | node bin/run.js",
"edge-test": "node bin/run.js ..\\require\\edge.js",
"mocha-debug": "node_modules/.bin/electron ./app node_modules/mocha/bin/_mocha",
"mocha-test": "node bin/run.js node_modules/mocha/bin/_mocha",
"mocha-t": "iron-node node_modules/mocha/bin/_mocha",
"test-notify": "node_modules/.bin/electron ./app ..\\require\\notify.js",
"compiler": "node_modules\\.bin\\electron ./app --compile=c:\\git\\require\\",
"err": "node bin/run.js ..\\require\\error.js",
"bump": "npm version patch && git push && git push --tags && npm publish"
},
"pre-commit": [
"test",
"mdlint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/s-a/iron-node.git"
},
"productName": "ironNode",
"author": "Stephan Ahlf <[email protected]> (https://github.com/s-a)",
"license": "MIT",
"bugs": {
"url": "https://github.com/s-a/iron-node/issues"
},
"homepage": "https://github.com/s-a/iron-node#readme",
"dependencies": {
"commander": "^2.9.0",
"deep-extend": "^0.4.1",
"electron": "^1.4.15",
"electron-recompile": "^1.0.16",
"markdown": "^0.5.0",
"nmp": "^1.0.3",
"package.js": "^1.1.3",
"pretty-error": "^2.0.2",
"syntax-error": "^1.1.6"
},
"devDependencies": {
"changelog": "^1.0.7",
"eslint": "^3.14.1",
"eslint-config-xo-space": "^0.14.0",
"jshint": "^2.9.4",
"mdlint": "^0.1.0",
"mocha": "^2.5.3",
"pre-commit": "^1.2.2",
"should": "^8.4.0"
}
}