-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "serialzr",
"version": "1.9.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/l00k/serialzr.git"
},
"type": "module",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tspc -P tsconfig.build.json",
"test": "mocha --import=tsx",
"coverage": "c8 mocha --import=tsx",
"inspect": "mocha --import=tsx --inspect-brk"
},
"dependencies": {},
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/chai": "^4.3.19",
"@types/chai-as-promised": "^8.0.0",
"@types/chai-subset": "^1.3.5",
"@types/mocha": "^10.0.8",
"@types/node": "^20.16.5",
"c8": "^10.1.2",
"chai": "^5.1.1",
"chai-as-promised": "^8.0.0",
"chai-subset": "^1.6.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.30.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"mocha": "^10.7.3",
"ts-patch": "^3.2.1",
"tsx": "^4.19.1",
"typescript": "5.5.4",
"typescript-eslint": "^8.7.0",
"typescript-transform-paths": "^3.5.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
]
}
}