forked from EyGaGNV/anydebugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·56 lines (56 loc) · 1.73 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
{
"name": "anydebugger",
"version": "2.1.0",
"description": "anydebugger enable you debug you web pages anywhere via Chrome Devtool with Chrome Devtools Protocol supported partially",
"main": "es/app.js",
"js:next": "es/app.js",
"bin": {
"anydebugger": "./es/bin.js"
},
"scripts": {
"babel": "babel src/ -d es/",
"server": "node --use_strict es/bin.js",
"start": "npm run babel && npm run server --debug",
"cp": "cp -r ./es/ /Users/chalecao/personal/adev/node_modules/anydebugger/es/ && cp -r ./views/ /Users/chalecao/personal/adev/node_modules/anydebugger/views/",
"http":"min-http . -p 9009"
},
"keywords": [
"web debugger, mock data"
],
"author": "haomou([email protected])",
"dependencies": {
"babel-runtime": "^6.26.0",
"bopen": "^2.3.0",
"chrome-devtools-frontend": "^1.0.576743",
"engine.io-parser": "^2.1.2",
"koa": "2.0.0",
"koa-bodyparser": "3.2.0",
"koa-router": "7.0.0",
"mime": "1.3.4",
"mime-db": "^1.35.0",
"mime-types": "^2.1.19",
"mz": "2.4.0",
"npmlog": "^4.1.2",
"nunjucks": "2.4.3",
"opts": "^1.2.6",
"request": "^2.88.0",
"socket.io": "^2.1.1",
"ws": "^6.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.3",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.22.0",
"rollup": "^0.63.4",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-buble": "^0.19.2"
}
}