generated from Borrus-sudo/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 914 Bytes
/
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
{
"name": "expressive-glob",
"version": "1.0.0",
"license": "MIT",
"author": "JSGandalf(he/him)",
"scripts": {
"test": "jest",
"prepare": "husky install",
"build": "tsup",
"dev": "tsup --watch lib"
},
"main": "out/index.js",
"module": "out/index.mjs",
"types": "out/index.d.ts",
"files": [
"out"
],
"exports": {
".": {
"require": "./out/index.js",
"import": "./out/index.mjs",
"types": "./out/index.d.ts"
}
},
"lint-staged": {
"*.{ts,js,json}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"husky": "^7.0.0",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"tsup": "^5.11.0",
"typescript": "^4.5.3"
}
}