-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "@moxy/next-webpack-oneof",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/moxystudio/next-webpack-oneof.git"
},
"description": "Wraps all webpack loader rules into a single oneOf rule.",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint .",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"files": [],
"keywords": [
"webpack",
"next",
"nextjs",
"plugin",
"loader",
"rules",
"oneof"
],
"author": "João Silva <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/moxystudio/next-webpack-oneof/issues"
},
"homepage": "https://github.com/moxystudio/next-webpack-oneof#readme",
"peerDependencies": {
"next": "^12"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@moxy/eslint-config-base": "^13.0.3",
"@moxy/eslint-config-jest": "^13.0.3",
"@moxy/jest-config-base": "^6.0.0",
"eslint": "^7.0.0",
"husky": "^4.0.10",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"standard-version": "^9.3.0"
}
}