-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
53 lines (53 loc) · 1.56 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
49
50
51
52
53
{
"name": "tegg",
"version": "0.0.1",
"description": "",
"private": true,
"homepage": "https://github.com/eggjs/tegg",
"bugs": {
"url": "https://github.com/eggjs/tegg/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:eggjs/tegg.git"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint:fix": "eslint . --ext .ts --fix",
"lint": "eslint . --ext .ts",
"test": "npm run test --workspaces --if-present",
"cov": "nyc npm run test",
"bump": "lerna version --conventional-commits --sign-git-commit --sign-git-tag --force-publish",
"pub": "lerna publish from-git",
"pub-canary": "lerna publish --canary",
"clean": "lerna run --parallel clean",
"clean-workspaces": "npm run clean --workspaces --if-present",
"prepare-test": "lerna run --parallel prepare-test",
"tsc": "lerna run tsc",
"tsc-workspaces": "npm run tsc --workspaces --if-present",
"tsc:pub": "lerna run tsc:pub",
"tsc:pub-workspaces": "npm run tsc:pub --workspaces --if-present",
"ci": "npm run prepare-test && npm run lint && npm run cov"
},
"author": "killagu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@eggjs/tsconfig": "^1.0.0",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"ajv": "^8.12.0",
"eslint": "^8.0.0",
"eslint-config-egg": "^12.0.0",
"eslint-plugin-import": "^2.24.2",
"lerna": "^6.1.0",
"nyc": "^15.1.0",
"source-map-support": "^0.5.16",
"test-exclude": "^6.0.0"
},
"workspaces": [
"core/*",
"plugin/*",
"standalone/*"
]
}