forked from OctoLinker/OctoLinker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.68 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": "OctoLinker",
"version": "4.12.0",
"engines": {
"node": ">=6.0.0"
},
"main": "lib/app.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "karma start",
"test:watch": "karma start --no-single-run --auto-watch",
"version": "json -I -f assets/manifest.json -e \"this.version='`json -f package.json version`'\" && git add assets/manifest.json",
"package-all": "npm-run-all chrome-pack firefox-pack && cp out/chrome-octolinker-$npm_package_version.zip out/opera-octolinker-$npm_package_version.zip",
"release": "webstore upload --source out/chrome-octolinker-$npm_package_version.zip --auto-publish",
"chrome-manifest": "mkdirp dist && json -e \"delete this.applications;\" < assets/manifest.json > dist/manifest.json",
"chrome-build": "npm run chrome-manifest && webpack",
"chrome-watch": "npm run chrome-manifest && webpack --watch",
"chrome-pack": "npm run chrome-build && mkdirp out && zip -rj out/chrome-octolinker-$npm_package_version.zip dist",
"chrome-open": "npm run chrome-build && npm run chrome-launch --",
"chrome-launch": "./scripts/chrome-launch.js",
"firefox-manifest": "mkdirp dist && cp assets/manifest.json dist/manifest.json",
"firefox-build": "npm run firefox-manifest && webpack",
"firefox-watch": "npm run firefox-manifest && webpack --watch",
"firefox-pack": "npm run firefox-build && mkdirp out && zip -rj out/firefox-octolinker-$npm_package_version.zip dist/",
"firefox-open": "npm run firefox-build && npm run firefox-launch --",
"firefox-launch": "web-ext run --source-dir dist --pref startup.homepage_welcome_url=https://github.com/OctoLinker/browser-extension/blob/master/package.json"
},
"dependencies": {
"JSONPath": "^0.11.2",
"babel-runtime": "^6.26.0",
"builtins": "^1.0.3",
"chrome-promise": "^2.1.1",
"concat-map": "^0.0.1",
"core-js": "^2.5.1",
"css-loader": "^0.28.7",
"escape-regex-string": "^1.0.4",
"findandreplacedomtext": "^0.4.5",
"github-injection": "^1.0.1",
"github-url-from-git": "^1.5.0",
"github-url-from-username-repo": "^1.0.2",
"giturl": "^1.0.0",
"jquery": "^3.2.1",
"path-parse": "^1.0.5",
"pop-zip": "^1.0.0",
"primer-core": "^6.4.0",
"primer-forms": "^1.4.0",
"querystring": "^0.2.0",
"semver": "^5.4.1",
"semver-regex": "^1.0.0",
"style-loader": "^0.19.0",
"uuid": "^3.1.0",
"xregexp": "^3.2.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chrome-launch": "^1.1.4",
"chrome-webstore-upload-cli": "^1.1.1",
"copy-webpack-plugin": "^4.1.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-prettier": "^2.3.1",
"json": "^9.0.4",
"json-loader": "^0.5.7",
"karma": "^1.7.1",
"karma-chrome-launcher": "^2.2.0",
"karma-detect-browsers": "^2.2.5",
"karma-firefox-launcher": "^1.0.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.4",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.4",
"mkdirp": "^0.5.1",
"mocha": "^4.0.0",
"npm-run-all": "^4.1.1",
"prettier": "^1.7.4",
"sinon": "^4.0.1",
"web-ext": "^2.0.0",
"webpack": "^3.6.0"
},
"optionalDependencies": {
"fsevents": "1.1.2"
},
"private": true
}