-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.31 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
{
"name": "extension-starter-lite",
"version": "0.0.4",
"description": "Minimalistic Chrome extension starter kit",
"main": "manifest.json",
"scripts": {
"add-manifest": "ncp src/manifest.json dist/manifest.json",
"watch-background": "parcel watch src/background.js --hmr-hostname localhost",
"watch-popup": "parcel watch src/popup.html --hmr-hostname localhost",
"clean": "rimraf dist/*",
"ensure-dist": "mkdirp dist && rimraf dist/*",
"dev": "npm run ensure-dist && concurrently \"npm run watch-popup\" \"npm run watch-background\" \"npm run add-manifest\"",
"build": "npm run ensure-dist && npm run add-manifest && parcel build src/background.js && parcel build src/popup.html && cross-zip dist dist.zip",
"start": "npm run dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/defly/extension-starter-lite.git"
},
"author": "defly",
"license": "ISC",
"bugs": {
"url": "https://github.com/defly/extension-starter-lite/issues"
},
"homepage": "https://github.com/defly/extension-starter-lite#readme",
"devDependencies": {
"autoprefixer": "^8.6.5",
"concurrently": "^3.6.1",
"cross-zip-cli": "^1.0.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"parcel-bundler": "^1.12.4",
"postcss-modules": "^1.5.0",
"rimraf": "^2.6.2"
}
}