-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "extension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "cp -r src/ dist && parcel watch src/background.js src/popup.html src/options.html --public-url '.' --no-cache",
"build": "rm -r dist && rm dist.zip && parcel build src/background.js src/popup.html src/options.html --public-url '.' --no-source-maps && cp src/manifest.json dist/manifest.json && cp -r src/assets dist && zip -r dist.zip dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FeedsPub/extension.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/FeedsPub/extension/issues"
},
"homepage": "https://github.com/FeedsPub/extension#readme",
"dependencies": {
"graphql": "^14.6.0",
"graphql-request": "^1.8.2",
"graphql-tag": "^2.10.3"
},
"browserslist": [
"since 2017-06"
],
"devDependencies": {
"cssnano": "^4.1.10"
}
}