-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.28 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
{
"name": "@simplyhexagonal/doorlock",
"version": "2.0.2",
"description": "Zero-dependency package to allow or deny access based on a hierarchy of restrictions, permissions, roles, and users",
"contributors": [
{
"name": "Jean M. Lescure",
"email": "opensource@jeanlescure.io",
"url": "http://jeanlescure.io/"
}
],
"main": "dist/doorlock.js",
"typings": "dist/doorlock.d.ts",
"scripts": {
"dev": "./scripts/dev",
"test": "./scripts/test",
"build": "./scripts/build",
"release": "release-it"
},
"release-it": {
"git": {
"changelog": "auto-changelog --stdout -l false -u -t ./assets/changelog-compact.hbs"
},
"hooks": {
"after:bump": "./scripts/release"
},
"npm": {
"publish": false
}
},
"files": [
"package.json",
"dist",
"README.md"
],
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"devDependencies": {
"@simplyhexagonal/logger": "^1.2.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.4",
"auto-changelog": "^2.3.0",
"esbuild": "^0.13.9",
"jest": "^27.3.1",
"refup": "^1.1.0",
"release-it": "^14.11.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
}
}