-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 1.97 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": "@ladjs/policies",
"description": "Policies helper for Lad",
"version": "12.2.0",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com)",
"bugs": {
"url": "https://github.com/ladjs/policies/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com)",
"Spencer Snyder <[email protected]> (http://spencersnyder.io/)",
"Pablo Varela <[email protected]> (http://pablo.life)",
"Shaun Warman <[email protected]> (https://shaunwarman.com/)",
"shadowgate15 (https://github.com/shadowgate15)"
],
"dependencies": {
"@hapi/boom": "^10.0.1",
"basic-auth": "^2.0.1",
"boolean": "^3.2.0",
"is-string-and-not-blank": "^0.0.2"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"ava": "^5.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nyc": "^15.1.0",
"remark-cli": "11",
"remark-preset-github": "^4.0.4",
"undici": "^6.0.1",
"xo": "^0.56.0"
},
"engines": {
"node": ">=16"
},
"files": [
"index.js"
],
"homepage": "https://github.com/ladjs/policies",
"keywords": [
"@ladjs/policies",
"lass"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"check-coverage": true,
"lines": 70,
"functions": 70,
"branches": 70,
"reporter": [
"lcov",
"html",
"text"
]
},
"peerDependencies": {
"undici": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/ladjs/policies"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"precommit": "lint-staged && npm test",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}