-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.07 KB
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
{
"name": "picket",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"firefox": "npm run watch & web-ext run --source-dir=dist/",
"build": "rollup -c rollup.config.js",
"watch": "npm run build -- -w",
"test": "mocha \"src/**/*.spec.js\" --require babel-register --require babel-polyfill --require testSetup.js",
"test-watch": "npm run test -- -w",
"build-xpi": "npm run build && web-ext build -s dist/ --overwrite-dest && mv web-ext-artifacts/netizens_association_browser_extension-0.0.1.{zip,xpi}",
"build-zip": "npm run build && cd dist && zip -r ../picket.zip * && cd -",
"integration-test": "NODE_ENV=test npm run build && mocha \"integrationTest/**/*.spec.js\" --require babel-register --require babel-polyfill --require testSetup.js --timeout 10000",
"webstore-upload": "npm run build-zip && webstore upload --source picket.zip --extension-id $WEBSTORE_EXTENSION_ID --client-id $WEBSTORE_CLIENT_ID --client-secret $WEBSTORE_CLIENT_SECRET --refresh-token $WEBSTORE_REFRESH_TOKEN",
"webstore-publish": "webstore publish --extension-id $WEBSTORE_EXTENSION_ID --client-id $WEBSTORE_CLIENT_ID --client-secret $WEBSTORE_CLIENT_SECRET --refresh-token $WEBSTORE_REFRESH_TOKEN",
"firefox-sign": "web-ext sign --source-dir dist --channel listed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/izens-net/picket.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/izens-net/picket/issues"
},
"homepage": "https://github.com/izens-net/picket#readme",
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"chrome-webstore-upload-cli": "^1.2.0",
"mocha": "^8.2.1",
"node-fetch": "^2.6.1",
"rollup": "^1.0.0",
"rollup-copy-plugin": "^0.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-replace": "^2.1.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"sinon": "^7.2.2",
"sinon-chai": "^3.3.0",
"web-ext": "^5.5.0"
},
"dependencies": {}
}