-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.14 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
{
"scripts": {
"build": " pnpm -r build",
"build:packages": " pnpm --filter './packages/*' build",
"clean": " pnpm -r clean",
"dev": " pnpm -r dev",
"lint:fix": " eslint --fix",
"test": " pnpm -r test",
"test:packages": " pnpm --filter './packages/*' test",
"test:watch": " pnpm -r test:watch",
"release": "lerna publish",
"release:yes": "lerna publish"
},
"devDependencies": {
"tslib": "^2.4.1",
"@lskjs/eslint-config": "2.21.0",
"eslint": "8.32.0",
"lerna": "6.4.1",
"typescript": "4.9.4"
},
"author": "Igor Suvorov <[email protected]>",
"bugs": "https://github.com/lskjs/cli/issues",
"license": "MIT",
"workspaces": [
"packages/*",
"apps/*"
],
"__scripts": {
"dev": "DEBUG=* ./packages/cli/bin/run",
"release": "lerna publish",
"release:yes": "lerna publish",
"test": "cd packages/cli-utils/tests && ./tests.sh",
"eslint": "eslint --ext .js,.jsx .",
"eslint:fix": "npm run eslint -- --fix"
}
}