-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.3 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.3 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@rownd/node",
"version": "3.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=14"
},
"scripts": {
"start": "tsdx watch",
"prebuild": "node -p \"'export const LIB_VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > src/version.ts && npm run lint -- --fix",
"build": "tsdx build",
"test": "tsdx test --collect-coverage",
"lint": "tsdx lint",
"prepare": "tsdx build",
"release": "release-it",
"size": "size-limit",
"analyze": "size-limit --why"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"author": "Matt Hamann",
"repository": {
"type": "git",
"url": "https://github.com/rownd/node.git"
},
"module": "dist/node.esm.js",
"size-limit": [
{
"path": "dist/node.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/node.esm.js",
"limit": "10 KB"
}
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
},
"hooks": {
"after:bump": "npm run build"
}
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"@release-it/conventional-changelog": "^5.0.0",
"@size-limit/preset-small-lib": "^7.0.8",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash": "^4.14.179",
"@types/node-jose": "^1.1.8",
"awaitable-timers": "^1.0.0",
"commitlint": "^17.0.3",
"express": "^4.17.2",
"husky": "^7.0.4",
"msw": "^0.48.0",
"release-it": "^15.3.0",
"size-limit": "^7.0.8",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.5.5"
},
"dependencies": {
"debug": "^4.3.3",
"got": "^11.8.5",
"jose": "^4.5.0",
"lodash": "^4.17.21",
"node-cache": "^5.1.2"
}
}