-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.63 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
{
"name": "wintip",
"version": "1.5.0",
"description": "Simple console tools for Webview debugging",
"main": "lib/wintip.js",
"modlue": "lib/wintip.esm.js",
"unpkg": "lib/wintip.min.js",
"types": "types/index.d.ts",
"scripts": {
"test": "mocha",
"dev": "node build/server",
"build": "node build/scripts",
"release": "bash build/release.sh"
},
"files": ["src/*", "README.md", "lib/*"],
"repository": {
"type": "git",
"url": "git+https://github.com/vv314/wintip.git"
},
"keywords": [
"console",
"webview",
"mobile",
"debug",
"webview 调试",
"移动端调试"
],
"author": "Vincent <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "https://github.com/vv314/wintip/issues"
},
"homepage": "https://github.com/vv314/wintip#readme",
"devDependencies": {
"babel-code-frame": "^6.26.0",
"browser-sync": "^2.24.4",
"chai": "^4.1.1",
"chalk": "^2.4.1",
"fs-extra": "^6.0.1",
"gzip-size": "^3.0.0",
"mocha": "^3.5.0",
"postcss-cssnext": "^3.0.2",
"rollup": "^0.59.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-postcss": "^1.6.1",
"rollup-plugin-re": "^1.0.6",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-typescript2": "^0.14.0",
"rollup-plugin-uglify": "^4.0.0",
"typescript": "^2.9.1",
"uglify-js": "^3.3.27"
},
"browserslist": [
"> 1%",
"last 3 versions",
"ios >= 8",
"android >= 4.1",
"not ie <= 8"
]
}