-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 1.98 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
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
{
"name": "razor-partial-views-webpack-plugin",
"version": "4.0.0",
"description": "Plugin for generating ASP.NET Razor partial views for assets built with webpack.",
"main": "index.js",
"repository": "[email protected]:jouni-kantola/razor-partial-views-webpack-plugin.git",
"keywords": [
"webpack",
"razor",
"views",
"aspnet"
],
"author": "Jouni Kantola <[email protected]>",
"license": "MIT",
"dependencies": {
"templated-assets-webpack-plugin": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"ava": "^2.4.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.3.0",
"css-loader": "^5.2.7",
"eslint": "^7.32.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^4.3.8",
"is-thirteen": "^2.0.0",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.6.2",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"webpack": "^5.94.0",
"webpack-cli": "^4.10.0"
},
"engines": {
"node": ">=10.13.0"
},
"bugs": {
"url": "https://github.com/jouni-kantola/razor-partial-views-webpack-plugin/issues"
},
"homepage": "https://github.com/jouni-kantola/razor-partial-views-webpack-plugin#readme",
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "rimraf test/dist && ava",
"coverage": "nyc --check-coverage npm test",
"qa": "yarn lint & yarn coverage",
"example": "webpack --config ./example/webpack.config.js",
"precommit": "lint-staged"
},
"prettier": {
"tabWidth": 2,
"trailingComma": "none",
"singleQuote": false,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"nyc": {
"watermarks": {
"lines": [
80,
95
],
"functions": [
80,
95
],
"branches": [
80,
95
],
"statements": [
80,
95
]
}
}
}