This repository was archived by the owner on Apr 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 KB
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
{
"name": "github-involved-issues",
"version": "1.0.0",
"description": "A Firefox add-on to add an \"Involved\" button on your GitHub issues page.",
"private": true,
"scripts": {
"env": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"}",
"build": "run-s \"env gulp build\"",
"watch": "run-s \"env gulp\"",
"preforge": "run-s build \"env gulp clean:addon\"",
"forge": "web-ext build -s ./dist -a ./addon",
"run": "web-ext run -f nightly -p default -s ./dist --start-url \"github.com/issues\" --pref \"datareporting.policy.firstRunURL=\"",
"dev": "run-p watch run",
"start": "npm run dev",
"lint:ts": "tslint -p .",
"lint:ff": "web-ext lint -s ./dist -a ./addon",
"lint": "run-p lint:*",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/github-involved-issues.git"
},
"keywords": [
"firefox",
"firefox-addon",
"browser-extension",
"github",
"involved",
"issues"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/gluons/github-involved-issues/issues"
},
"homepage": "https://github.com/gluons/github-involved-issues",
"browserslist": [
"last 3 Firefox version",
"Firefox ESR"
],
"devDependencies": {
"@types/gulp": "^3.8.34",
"@types/node": "^8.0.50",
"@types/pump": "^1.0.1",
"@types/webpack": "^3.8.1",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.1",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-plumber": "^1.1.0",
"gulp-replace": "^0.6.1",
"npm-run-all": "^4.1.2",
"pump": "^1.0.2",
"ts-loader": "^3.1.1",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"tslint-config-gluons": "^1.0.5",
"typescript": "^2.6.1",
"web-ext": "^2.2.2",
"webpack": "^3.8.1",
"webpack-stream": "^4.0.0"
},
"dependencies": {
"dom-loaded": "^1.0.1",
"github-injection": "^1.0.1",
"select-dom": "^4.1.1"
}
}