-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
81 lines (81 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "weex-debugger",
"description": "weex developer tool for debugging weex app with chrome devtool",
"version": "1.3.5",
"author": "erha19 <[email protected]>",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/weexteam/weex-debugger.git"
},
"keywords": [
"weex",
"debugger",
"inspector",
"devtool"
],
"scripts": {
"lint": "eslint src",
"format": "prettier --write \"src/**/*.js\" --loglevel error && eslint src --fix",
"dev": "babel src -w --out-dir lib",
"build": "babel src --out-dir lib",
"prepublish": "npm run lint && npm run build && node ./scripts/update.js"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^8.0.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^5.3.0",
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"prettier": "^1.13.7"
},
"dependencies": {
"babel-runtime": "^6.6.1",
"boxen": "^1.2.2",
"chalk": "^1.1.3",
"chrome-opn": "^1.0.1",
"commander": "^2.9.0",
"del": "^2.2.1",
"detect-port": "^1.2.1",
"download": "^5.0.3",
"exit": "^0.1.2",
"fs-extra": "^7.0.0",
"invok": "^1.0.2",
"ip": "^1.1.3",
"ipromise": "^1.0.2",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"koa-websocket": "^5.0.1",
"mkdirp": "^0.5.1",
"node-watch": "^0.3.5",
"ora": "^2.0.0",
"parse-hosts": "^1.0.1",
"puppeteer": "^1.0.0",
"request": "^2.83.0",
"uuid": "^3.3.2",
"weex-builder": "^0.4.0",
"ws": "^2.2.0"
},
"bin": {
"weex-debugger": "bin/weex-devtool.js"
},
"changelog": {
"messages": [
"[Bugfix] Fix SSRF security issues",
"[Bugfix] Fix remote code execution via node-simtcl module"
],
"url": "https://github.com/weexteam/weex-debugger/blob/master/CHANGELOG.md"
}
}