-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 759 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 759 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
28
{
"name": "liberanews",
"version": "0.1.0",
"description": "Free the news!",
"main": "main.js",
"scripts": {
"source": "git archive --format=zip HEAD > source.zip",
"dist": "run-s build _dist",
"build": "run-s _clean _build",
"build:watch": "run-s _clean _build:watch",
"test": "echo \"Error: no test specified\" && exit 1",
"_clean": "rimraf build",
"_dist": "web-ext -s build build",
"_build": "rollup -c",
"_build:watch": "rollup -w -c"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chokidar": "^3.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup-plugin-copy": "^3.3.0",
"web-ext": "^4.1.0",
"webextension-polyfill": "^0.6.0"
}
}