forked from connormanning/copc.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 765 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 765 Bytes
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
{
"name": "copc",
"license": "MIT",
"version": "0.0.8",
"main": "lib/index.js",
"scripts": {
"build": "tsc --project tsconfig.production.json && tsc-alias",
"prepare": "npm run build",
"test": "jest"
},
"dependencies": {
"cross-fetch": "^3.1.5",
"laz-perf": "^0.0.7"
},
"devDependencies": {
"@types/emscripten": "^1.39.10",
"@types/estree": "^1.0.4",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"husky": "^7.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.3",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"browser": {
"fs": false
}
}