-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
{
"name": "svrx-plugin-webpack",
"version": "1.0.2",
"description": "The svrx plugin for webpack",
"main": "index.js",
"keywords": [
"svrx",
"svrx-plugin",
"webpack"
],
"files": [
"index.js",
"README.md"
],
"engines": {
"svrx": "^1.0.0"
},
"author": "leeluolee <[email protected]>",
"scripts": {
"test": "mocha __tests__",
"lint": "eslint \"**/*.js\"",
"lint:fix": "eslint \"**/*.js\" --fix",
"prepublishOnly": "npm run lint && npm run test"
},
"dependencies": {
"graceful-fs": "^4.2.2",
"koa-compose": "^4.1.0",
"resolve": "^1.11.0",
"semver": "^6.1.2",
"@svrx/util": "^1.0.0",
"webpack": "^4.0.0",
"webpack-dev-middleware": "^3.7.0",
"webpack-hot-middleware": "^2.25.0"
},
"devDependencies": {
"@svrx/eslint-config": "^1.0.0",
"coveralls": "^3.0.0",
"eslint": "^6.2.0",
"expect.js": "^0.3.1",
"global-modules": "^2.0.0",
"husky": "^3.0.4",
"lint-staged": "^9.2.3",
"mocha": "^6.2.0",
"nyc": "^14.1.0",
"rimraf": "^2.6.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --fix"
},
"license": "MIT"
}