-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
49 lines (49 loc) · 1.64 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
{
"name": "eruda-webpack-plugin",
"version": "1.7.0",
"description": "A webpack plugin of eruda to help you develop mobile app",
"main": "index.js",
"scripts": {
"release": "standard-version && git push --follow-tags origin master && npm publish",
"release:first": "standard-version --first-release && git push --follow-tags origin master && npm publish",
"release:major": "standard-version --release-as major && git push --follow-tags origin master && npm publish",
"release:minor": "standard-version --release-as minor && git push --follow-tags origin master && npm publish",
"release:patch": "standard-version --release-as patch && git push --follow-tags origin master && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huruji/eruda-webpack-plugin.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/huruji/eruda-webpack-plugin/issues"
},
"homepage": "https://github.com/huruji/eruda-webpack-plugin#readme",
"dependencies": {
"camel-case": "^4.1.2",
"eruda": "^2.4.1",
"eruda-benchmark": "^2.0.0",
"eruda-code": "^2.0.0",
"eruda-dom": "^2.0.0",
"eruda-features": "^2.0.0",
"eruda-fps": "^2.0.0",
"eruda-geolocation": "^2.0.0",
"eruda-memory": "^2.0.0",
"eruda-orientation": "^2.0.0",
"eruda-timing": "^2.0.0"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"standard-version": "^9.3.0"
},
"files": [
"index.js",
"lib"
]
}