forked from OctoLinker/OctoLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.44 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
{
"name": "OctoLinker",
"engines": {
"node": ">=8.0.0"
},
"main": "lib/app.js",
"scripts": {
"lint": "eslint .",
"pretest": "yarn lint",
"test": "jest",
"e2e": "node ./e2e/generate-fixtures-json.js && jest --config=e2e/jest-e2e.config.js",
"postinstall": "yarn lerna bootstrap",
"test:watch": "jest --watch",
"version": "json -I -f assets/manifest.json -e \"this.version='`json -f package.json version`'\" && git add assets/manifest.json",
"package": "web-ext build --source-dir dist --artifacts-dir out --overwrite-dest",
"release:cws": "cd dist && webstore upload --auto-publish",
"release:amo": "cd dist && webext submit",
"release": "npm run release:cws && npm run release:amo",
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"chrome-open": "yarn build && yarn chrome-launch --",
"chrome-launch": "node scripts/chrome-launch.js",
"firefox-open": "yarn build && yarn firefox-launch --",
"firefox-launch": "web-ext run --source-dir dist --pref startup.homepage_welcome_url=https://github.com/OctoLinker/OctoLinker/blob/master/package.json"
},
"devDependencies": {
"async": "^2.6.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-jest": "^22.0.3",
"chrome-launch": "^1.1.4",
"chrome-webstore-upload-cli": "^1.1.1",
"codecov": "^3.0.4",
"copy-webpack-plugin": "^4.4.2",
"css-loader": "^0.28.7",
"dotenv": "^6.0.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.4.0",
"jest": "^23.4.2",
"jest-fetch-mock": "^1.6.5",
"jest-puppeteer": "^3.2.1",
"json": "^9.0.4",
"json-loader": "^0.5.7",
"lerna": "^2.7.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.4",
"puppeteer": "^1.5.0",
"recursive-readdir": "^2.2.2",
"sinon": "^4.0.1",
"style-loader": "^0.19.0",
"web-ext": "^2.0.0",
"webext": "1.9.1-with-submit.1",
"webextension-polyfill": "^0.2.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9"
},
"optionalDependencies": {
"fsevents": "1.1.2"
},
"private": true
}