-
Notifications
You must be signed in to change notification settings - Fork 95
/
package.json
33 lines (33 loc) · 875 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
{
"name": "zora",
"workspaces": [
"assert",
"reporters",
"zora",
"pta"
],
"engines": {
"node": ">=15",
"npm": ">=7"
},
"scripts": {
"format": "prettier --write **/{src,test}/**/*.{js,ts}",
"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": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"prettier": "^3.1.1",
"rollup": "^4.9.1",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.3.3"
},
"prettier": {
"singleQuote": true
}
}