-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 851 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 851 Bytes
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
{
"name": "mobile-devtools",
"version": "0.0.1",
"description": "Mobile browser extension based on Eruda for debugging.",
"scripts": {
"build": "npm run cleanup && npm run copy-assets && npm run pack",
"copy-assets": "cpx \"src/**/*.{html,js,json,png}\" ./build && cpx node_modules/eruda/eruda.min.js ./build",
"pack": "crx pack build -o mobile-devtools.crx",
"cleanup": "rimraf build/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/volleio/mobile-devtools.git"
},
"author": "Lucas Volle",
"license": "MIT",
"bugs": {
"url": "https://github.com/volleio/mobile-devtools/issues"
},
"homepage": "https://github.com/volleio/mobile-devtools#readme",
"dependencies": {
"cpx2": "^2.0.0",
"crx": "^5.0.1",
"eruda": "github:volleio/eruda#build",
"rimraf": "^3.0.0"
}
}