-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 928 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
{
"name": "svrx-plugin-json-server",
"version": "1.0.1",
"description": "The svrx plugin for json-server",
"main": "index.js",
"keywords": [
"svrx",
"svrx-plugin",
"json-server"
],
"engines": {
"svrx": "^1.0.0"
},
"author": "leeluolee <[email protected]>",
"scripts": {
"start": "node ./example/start.js",
"test": "mocha",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"prepublishOnly": "npm run lint && npm run test"
},
"dependencies": {
"find-free-port": "^2.0.0",
"json-server": "^0.15.1"
},
"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",
"mocha": "^6.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"license": "MIT"
}