forked from kumabook/bebop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "bebop",
"version": "0.1.82",
"main": "index.js",
"repository": "https://github.com/kumabook/bebop",
"author": "Hiroki Kumamoto <[email protected]>",
"license": "MIT",
"scripts": {
"build": "webpack && web-ext build --overwrite-dest -i web-ext-artifacts/ -i test/ -i coverage/ -i \"**/*~\"",
"build:release": "cross-env NODE_ENV=production npm run build",
"start": "node index.js",
"sign": "cross-env NODE_ENV=production web-ext sign -i web-ext-artifacts/ -i test/ -i coverage/ -i \"**/*~\" --api-key $API_KEY --api-secret $API_SECRET",
"webstore": "webstore upload --source web-ext-artifacts/bebop-$VERSION.zip --extension-id $EXTENSION_ID --client-id $CLIENT_ID --client-secret $CLIENT_SECRET --refresh-token $REFRESH_TOKEN --auto-publish",
"release:firefox": "npm run build:release && npm run sign",
"release:chrome": "npm run build:release && npm run webstore",
"pack": "git archive HEAD --output=bebop.zip",
"watch": "webpack --watch",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint \"src/**/*.js?(x)\" \"test/**/*.{js,jsx}\"",
"eslint:fix": "eslint \"src/**/*.js?(x)\" \"test/**/*.{js,jsx}\" --fix",
"stylelint": "stylelint \"./{popup,options_ui}/*.css\" --ignore-pattern normalize.css --fix",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc ava \"test/**/*.test.{js,jsx}\" --verbose",
"test:watch": "npm test -- --watch",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov | coveralls",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect"
},
"devDependencies": {
"ava": "1.4.0",
"chrome-webstore-upload-cli": "^1.1.1",
"coveralls": "^3.0.0",
"webpack-cli": "^3.1.2"
},
"engines" : {
"npm" : "<9.1.1",
"node" : "<16.20.0"
},
"permissions": {
"multiprocess": true
},
"dependencies": {
"@ava/babel": "^1.0.1",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-istanbul": "^5.2.0",
"connected-react-router": "^6.8.0",
"cross-env": "^5.2.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"fake-indexeddb": "^2.1.1",
"history": "^4.10.1",
"fake-indexeddb": "^2.1.1",
"history": "^4.9.0",
"is-url": "^1.2.2",
"jsdom": "^15.0.0",
"kiroku": "^0.0.4",
"nisemono": "^0.0.3",
"nyc": "^14.0.0",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-redux": "^7.0.0",
"react-router-dom": "^5.0.1",
"react-sortable-hoc": "^1.11.0",
"react-test-renderer": "^16.8.6",
"react-treeview": "^0.4.7",
"redux": "^4.0.5",
"redux-saga": "^0.16.0",
"reselect": "^4.0.0",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^18.3.0",
"uuid": "^3.4.0",
"web-ext": "^4.2.0",
"webext-redux": "^2.1.2",
"webextension-polyfill": "0.6.0",
"webpack": "^5.61.0",
"snyk": "^1.319.2"
},
"ava": {
"babel": {
"testOptions": {}
}
},
"snyk": true
}