forked from OctoLinker/OctoLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.87 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
{
"name": "OctoLinker",
"version": "5.2.1",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"e2e": "node ./e2e/generate-fixtures-json.js && jest --config=e2e/jest-e2e.config.js",
"postinstall": "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 && json -I -f packages/core/package.json -e \"this.version='`json -f package.json version`'\" && git add packages/core/package.json",
"package": "web-ext build --source-dir dist --artifacts-dir out --overwrite-dest",
"patch-permissions": "npm run json -I -f assets/manifest.json -e 'this.permissions.push(\"https://api.github.com/\")'",
"release:cws": "cd dist && webstore upload --auto-publish",
"release:amo": "cd dist && npm run patch-permissions && webext submit",
"release": "npm run release:cws",
"build": "webpack --mode=production",
"watch": "webpack --watch --mode=development",
"chrome-open": "npm run build && npm run chrome-launch --",
"chrome-launch": "node scripts/chrome-launch.js",
"firefox-open": "npm run build && npm run 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": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"async": "^3.0.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-preset-jest": "^24.9.0",
"chrome-launch": "^1.1.4",
"chrome-webstore-upload-cli": "^1.2.0",
"codecov": "^3.5.0",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^3.0.0",
"dotenv": "^8.0.0",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^2.1.2",
"jest-puppeteer": "^4.2.0",
"json": "^9.0.6",
"json-loader": "^0.5.7",
"lerna": "^3.15.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"puppeteer": "^1.20.0",
"recursive-readdir": "^2.2.2",
"sinon": "^7.3.2",
"string.prototype.matchall": "^4.0.0",
"style-loader": "^1.0.0",
"web-ext": "^3.0.0",
"webext": "1.9.1-with-submit.1",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.4"
},
"optionalDependencies": {
"fsevents": "2.1.1"
},
"private": true,
"dependencies": {}
}