-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
54
55
56
57
58
59
60
61
62
63
{
"name": "root",
"private": true,
"description": "A extremely fast cli for building JavaScript/TypeScript library.",
"version": "0.0.1",
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/lbwa/esw.git"
},
"keywords": [
"typescript",
"javascript",
"cli",
"development",
"integrate"
],
"author": "Liu Bowen <asyncmode@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lbwa/esw/issues"
},
"homepage": "https://github.com/lbwa/esw#readme",
"scripts": {
"prepare": "husky install && lerna bootstrap",
"prepublishOnly": "yarn build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,scss,sass,less,md}\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest --verbose",
"watch": "lerna run watch --stream --parallel",
"build": "lerna run build --stream"
},
"devDependencies": {
"@lbwa/eslint-plugin": "^0.3.1",
"@lbwa/prettier-config": "^0.1.0",
"@lbwa/tsconfig": "^1.1.0",
"@types/jest": "^27.4.0",
"eslint": "^8.6.0",
"husky": "^6.0.0",
"jest": "^27.4.7",
"lerna": "^5.1.6",
"lint-staged": "^11.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.7.4"
},
"prettier": "@lbwa/prettier-config",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,less,md}": [
"prettier --write"
],
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"engines": {
"node": ">=14.14.0",
"yarn": ">=1.21.1 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
}
}