-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 923 Bytes
/
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
{
"name": "svrx-plugin-weinre",
"version": "1.0.0",
"description": "The svrx plugin for weinre",
"main": "index.js",
"keywords": [
"svrx",
"svrx-plugin",
"weinre"
],
"engines": {
"svrx": "^1.0.0"
},
"author": "svrxjs",
"scripts": {
"start": "node ./example/start.js",
"lint": "eslint index.js",
"lint:fix": "eslint index.js --fix"
},
"dependencies": {
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"find-free-port": "^2.0.0",
"nopt": "3.0.x",
"serve-favicon": "^2.5.0",
"serve-static": "^1.14.1",
"underscore": "1.7.x"
},
"devDependencies": {
"@svrx/eslint-config": "^1.0.0",
"eslint": "^6.2.0",
"global-modules": "^2.0.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"license": "MIT"
}