-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 999 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
{
"name": "yeoman-api",
"version": "0.0.2",
"private": true,
"type": "module",
"workspaces": [
"./workspaces/namespace",
"./workspaces/types"
],
"scripts": {
"prebuild": "npm run clean",
"build": "npm run build --workspaces",
"clean": "npm run clean --workspaces",
"clean-all": "npm run clean-all --workspaces && rimraf node_modules",
"fix": "npm run fix --workspaces",
"prepare": "npm run build",
"prettier": "prettier --write .",
"test": "npm run test --workspaces",
"test-coverage": "npm run test-coverage --workspaces"
},
"devDependencies": {
"@types/node": "^18.11.9",
"c8": "^7.12.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cpy-cli": "^4.2.0",
"esmocha": "^0.1.4",
"lerna": "^6.3.0",
"prettier": "^2.8.2",
"prettier-plugin-packagejson": "^2.3.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"xo": "^0.53.1"
},
"engines": {
"node": "^16.13.0 || >=18.12.0"
}
}