forked from lorenzofox3/zora
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "zora",
"workspaces": [
"assert",
"reporters",
"zora",
"pta"
],
"engines": {
"node": ">=15",
"npm": ">=7"
},
"scripts": {
"format": "prettier --write **/{src,test}",
"clean": "rm -rf {.,reporters,zora,assert,pta}/{node_modules,dist,package-lock.json}",
"install:fresh": "npm i && npm i --workspaces",
"install:ci": "npm ci --include=dev",
"build": "npm run build --workspaces --if-present",
"clean:install": "npm run clean && npm run install:fresh && npm run build",
"test": "npm t --workspaces --if-present"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"c8": "^7.11.3",
"husky": "^7.0.4",
"nodemon": "^2.0.20",
"prettier": "^2.6.2",
"pretty-quick": "^3.1.3",
"rollup": "^2.75.6",
"rollup-plugin-dts": "^4.2.2",
"typescript": "^4.7.3"
},
"prettier": {
"singleQuote": true
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}