forked from repeekgg/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 2.94 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 2.94 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"private": true,
"scripts": {
"prepush": "run-s test",
"precommit": "lint-staged",
"dev": "webpack --mode=development --watch",
"build": "cross-env NODE_ENV=production webpack --mode=production",
"test": "cross-env BABEL_ENV=testing ava",
"lint": "xo",
"prettier": "prettier --write \"**/*.{js,json,css}\"",
"release:amo": "cd dist && webext submit",
"release:cws": "cd dist && webstore upload --auto-publish",
"release": "run-s build release:*"
},
"dependencies": {
"camelcase-keys": "^4.2.0",
"copy-text-to-clipboard": "^1.0.4",
"detect-browser": "^2.1.0",
"dom-chef": "^3.1.0",
"lodash": "^4.17.10",
"material-ui": "^1.0.0-beta.38",
"mem": "^3.0.0",
"p-memoize": "^1.0.0",
"p-retry": "^1.0.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-sortable-hoc": "^0.6.8",
"select-dom": "^4.1.1",
"semver-diff": "^2.1.0",
"style-inject": "^0.3.0",
"webext-options-sync": "^0.15.0",
"webextension-polyfill": "^0.2.1"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"browser-env": "^3.2.5",
"chrome-webstore-upload-cli": "^1.1.1",
"clean-webpack-plugin": "^0.1.18",
"copy-webpack-plugin": "^4.5.1",
"cross-env": "^5.1.5",
"eslint-config-xo-react": "^0.16.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"npm-run-all": "^4.1.2",
"prettier": "^1.11.1",
"sinon": "^4.4.2",
"uglifyjs-webpack-plugin": "^1.2.2",
"webext": "^1.9.1-with-submit.1",
"webpack": "^4.1.0",
"webpack-cli": "^2.0.10",
"xo": "^0.20.3"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": true
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"npm run lint",
"git add"
]
},
"xo": {
"parser": "babel-eslint",
"env": "browser",
"globals": [
"chrome"
],
"extends": [
"xo-react"
],
"plugins": [
"react"
],
"prettier": true,
"space": true,
"rules": {
"react/prop-types": 0
}
},
"ava": {
"require": [
"babel-register",
"babel-polyfill",
"./test/helpers/setup-browser-env.js"
],
"babel": {
"plugins": [
[
"transform-react-jsx",
{
"pragma": "h"
}
]
]
}
},
"babel": {
"env": {
"testing": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}
}
}