-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 735 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
{
"name": "node-test-debuggers",
"version": "0.0.1",
"description": "easy to use test cases for node debuggers",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index",
"debug": "node debug index.js",
"chrome": "node --inspect --debug-brk index.js",
"chrome:webpack": "node --inspect --debug-brk build/backend.js",
"node-inspector": "node-debug index.js",
"devtool": "devtool index.js",
"iron-node": "iron-node index.js",
"vscode": "open -a \"Visual Studio Code\" .",
"webstorm": "open -a \"WebStorm\" ."
},
"author": "Matt Kime",
"license": "ISC",
"dependencies": {
"webpack": "^1.13.2"
}
}