-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
{
"name": "@simplyhexagonal/session-sso",
"version": "2.0.3",
"description": "",
"contributors": [
{
"name": "Jean M. Lescure",
"email": "[email protected]",
"url": "http://jeanlescure.io/"
}
],
"main": "dist/session-sso.js",
"typings": "dist/session-sso.d.ts",
"bin": {
"session-sso": "./bin/gen-certs-json"
},
"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
}
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jsonwebtoken": "^8.5.5",
"@types/node": "^16.11.4",
"auto-changelog": "^2.3.0",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"esbuild": "^0.13.9",
"jsonwebtoken": "^8.5.1",
"refup": "^1.1.0",
"release-it": "^14.11.6",
"short-unique-id": "^4.4.4",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"peerDependencies": {
"axios": "*",
"jsonwebtoken": "*",
"short-unique-id": "*"
}
}