-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "gcpimp",
"version": "1.0.0",
"description": "GCP Developer tools - Doctusoft Hackaton 2017",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean:dist": "rimraf dist",
"clean:cache": "rimraf .cache",
"clean:packaged": "rimraf packaged",
"clean": "run-p clean:*",
"build:clean-dist": "rimraf dist",
"build:cs-toolbar": "parcel build ./src/content-scripts/custom-toolbar-color.ts",
"build:popup-html": "parcel build ./src/popup/popup.html --public-url ./",
"build": "run-p build:*",
"zip": "bestzip gcpimp.zip manifest.json dist src/assets",
"package": "run-s clean build zip",
"watch:popup-html": "parcel watch ./src/popup/popup.html --public-url ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Doctusoft/gcpimp.git"
},
"author": "Doctusoft",
"license": "ISC",
"bugs": {
"url": "https://github.com/Doctusoft/gcpimp/issues"
},
"homepage": "https://github.com/Doctusoft/gcpimp#readme",
"devDependencies": {
"@types/chrome": "0.0.69",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"bestzip": "^1.1.4",
"node-sass": "^4.9.0",
"npm-run-all": "^4.1.3",
"parcel": "^1.9.4",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"typescript": "^2.9.2"
},
"dependencies": {
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-md": "^1.4.1"
},
"browserlist": [
"last 2 Chrome versions"
]
}