-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.52 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
{
"name": "stepper",
"version": "0.1.0",
"description": "Debug JavaScript using JavaScript",
"main": "index.js",
"scripts": {
"test": "mocha ./test/*-spec.js",
"build": "browserify ./src/debugger.js -o ./build/debugger.js -s Debugger -t [ babelify ]",
"watch": "watchify ./src/debugger.js -o ./build/debugger.js -s Debugger -v -t [ babelify ]",
"processing": "browserify ./src/processing-debugger.js -o ./build/processing-debugger.js --exclude ./src/debugger.js -s ProcessingDebugger -t [ babelify --presets [ es2015 ] ]"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinbarabash/debugger.git"
},
"author": "Kevin Barabash <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinbarabash/debugger/issues"
},
"homepage": "https://github.com/kevinbarabash/debugger",
"devDependencies": {
"babelify": "^7.2.0",
"browserify": "^8.0.1",
"expect.js": "^0.3.1",
"gehry": "0.1.0",
"iframe-overlay": "0.1.1",
"jquery": "^2.1.1",
"mocha": "^2.0.1",
"poster": "git://github.com/kevinbarabash/poster.git",
"sinon": "^1.17.2",
"testee": "^0.1.7",
"watchify": "^3.6.1"
},
"dependencies": {
"basic-ds": "git://github.com/kevinbarabash/basic-ds.git",
"escodegen": "git://github.com/kevinbarabash/escodegen.git#yield_with_parentheses",
"escope": "^1.0.1",
"esprima-fb": "^8001.1001.0-dev-harmony-fb",
"estraverse": "^1.9.0",
"install": "^0.4.1",
"npm": "^3.5.2",
"regenerator": "^0.8.42"
}
}