-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
package.json
104 lines (104 loc) · 3.63 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
97
98
99
100
101
102
103
104
{
"name": "OctoLinker",
"version": "4.8.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"
},
"babel": {
"plugins": [
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 3 Chrome versions",
"last 3 Firefox versions",
"last 3 Opera versions"
]
}
}
]
]
},
"dependencies": {
"JSONPath": "0.11.2",
"builtins": "1.0.3",
"chrome-promise": "2.0.2",
"core-js": "2.4.1",
"escape-regex-string": "1.0.4",
"findandreplacedomtext": "0.4.5",
"github-injection": "0.3.0",
"github-url-from-git": "1.5.0",
"github-url-from-username-repo": "1.0.2",
"giturl": "1.0.0",
"jquery": "3.1.1",
"pop-zip": "1.0.0",
"querystring": "0.2.0",
"semver": "5.3.0",
"semver-regex": "1.0.0",
"uuid": "3.0.1",
"xregexp": "3.1.1"
},
"devDependencies": {
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-preset-env": "1.1.10",
"chrome-launch": "1.1.4",
"chrome-webstore-upload-cli": "1.1.1",
"copy-webpack-plugin": "4.0.1",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-mocha": "4.8.0",
"json": "9.0.4",
"json-loader": "0.5.4",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-detect-browsers": "2.2.4",
"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.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"npm-run-all": "4.0.1",
"sinon": "2.0.0-pre.4",
"web-ext": "1.7.0",
"webpack": "2.2.1"
},
"optionalDependencies": {
"fsevents": "*"
},
"private": true
}