forked from liriliri/chii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.14 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
{
"name": "chii",
"version": "0.7.0",
"description": "Chrome devtools framework",
"main": "./server/index.js",
"bin": {
"chii": "./bin/chii.js"
},
"files": [
"bin",
"public",
"server",
"test"
],
"scripts": {
"ci": "npm run lint && npm run build && npm run es5",
"format": "npm run format:server && prettier 'src/**/*.ts' '*.{js,json}' 'bin/*.js' 'test/*.{html,json,js,css}' --write",
"format:server": "lsla prettier 'server/**/*.js' --write",
"build": "gulp clean && webpack --mode=production && npm run build:front_end",
"build:front_end": "npm run dev:front_end && gulp uglify",
"dev": "webpack --mode=development -w",
"dev:front_end": "cd devtools/devtools-frontend && gn gen out/Default && autoninja -C out/Default && lsla shx cp -R out/Default/gen/front_end ../../public",
"lint": "npm run lint:server && npm run lint:target",
"lint:server": "eslint server/**/*.js",
"lint:target": "tslint target/**/*.ts",
"init:front_end": "cd devtools && rm -rf devtools-frontend && gclient sync --with_branch_heads --verbose && cd ../ && python3 script/apply_all_patches.py patches/config.json",
"es5": "es-check es5 public/target.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liriliri/chii.git"
},
"keywords": [
"devtools"
],
"author": "redhoodsu",
"license": "MIT",
"bugs": {
"url": "https://github.com/liriliri/chii/issues"
},
"homepage": "https://github.com/liriliri/chii#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chobitsu": "^0.4.0",
"es-check": "^6.2.1",
"eslint": "^6.8.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-uglify-es": "^3.0.0",
"ncp": "^2.0.0",
"terser": "^5.10.0",
"ts-loader": "^7.0.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"commander": "^5.0.0",
"handlebars": "^4.7.6",
"koa": "^2.11.0",
"koa-compress": "^4.0.1",
"koa-router": "^8.0.8",
"koa-send": "^5.0.0",
"licia": "^1.28.0",
"ws": "^7.2.3"
}
}