-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.25 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
{
"name": "refined-gitlab",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/kiwicom/refined-gitlab#readme",
"bugs": {
"url": "https://github.com/kiwicom/refined-gitlab/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kiwicom/refined-gitlab.git"
},
"license": "ISC",
"author": "",
"main": "popup.js",
"scripts": {
"append-beta-to-name": "dot-json extension/manifest.json name 'Refined Gitlab BETA'",
"build": "webpack",
"precommit": "lint-staged",
"format": "prettier --trailing-comma --write 'src/**/*.js'",
"release": "cd extension && webstore upload --auto-publish",
"update-version": "dot-json extension/manifest.json version $(date -u +%y.%-m.%-d.%-H%M)",
"watch": "webpack --watch"
},
"babel": {
"plugins": [
[
"transform-runtime",
{
"helpers": false,
"polyfill": false
}
],
"transform-object-rest-spread"
],
"presets": [
[
"env",
{
"targets": {
"browsers": [
"last 3 Chrome versions"
]
}
}
]
]
},
"dependencies": {
"chrome-promise": "^2.0.3",
"lodash": "^4.17.4",
"primer-core": "^3.0.0",
"primer-forms": "^1.0.6",
"uuid": "^3.1.0",
"webext-domain-permission-toggle": "^1.0.0",
"webext-dynamic-content-scripts": "^6.0.3"
},
"devDependencies": {
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-latest": "^6.24.1",
"chroma-js": "^1.3.4",
"chrome-webstore-upload-cli": "^1.1.1",
"copy-webpack-plugin": "^4.0.1",
"dot-json": "^1.0.3",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"husky": "^0.14.3",
"jest": "^20.0.4",
"lint-staged": "^4.0.1",
"npm-run-all": "^4.0.2",
"prettier": "^1.3.1",
"web-ext-submit": "^4.0.0",
"webpack": "^3.7.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}