-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 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
{
"name": "simple-pug-loader",
"description": "Pug loader for webpack that's more simple than the original",
"version": "0.2.1",
"author": "Spencer Snyder <[email protected]> (https://spencersnyder.io)",
"bugs": {
"url": "https://github.com/Spence-S/simple-pug-loader/issues",
"email": "[email protected]"
},
"contributors": [
"Spencer Snyder <[email protected]> (https://spencersnyder.io)"
],
"dependencies": {
"loader-utils": "^2.0.0",
"pug-walk": "^2.0.0",
"resolve": "^1.19.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"ava": "^3.15.0",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "latest",
"fixpack": "latest",
"husky": "4",
"lint-staged": "^11.0.0",
"nyc": "latest",
"pug": "^2.0.4",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"xo": "^0.40.2"
},
"engines": {
"node": ">= 12"
},
"homepage": "https://github.com/Spence-S/simple-pug-loader",
"keywords": [
"better-pug-loader",
"lass"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"pug": ">=2"
},
"repository": {
"type": "git",
"url": "https://github.com/Spence-S/simple-pug-loader"
},
"scripts": {
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "yarn run lint:js && yarn run lint:md",
"lint:js": "xo",
"lint:md": "remark . -qfo",
"test": "cross-env NODE_ENV=test ava",
"test-coverage": "cross-env NODE_ENV=test nyc yarn run test"
},
"xo": {
"prettier": true,
"space": true,
"settings": {
"import/resolver": {
"node": {}
}
},
"rules": {
"unicorn/prefer-module": "off",
"unicorn/no-this-assignment": "off",
"unicorn/prefer-spread": "off",
"unicorn/prevent-abbreviations": "off",
"multiline-comment-style": [
"error",
"starred-block"
]
}
}
}