forked from siyul-park/convable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"bootstrap:hoist": "lerna bootstrap --hoist",
"import": "lerna import",
"add": "lerna add",
"link:convert": "lerna link convert",
"create": "lerna create",
"build": "lerna run build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"test": "jest",
"clean": "lerna run clean",
"package:publish": "lerna publish",
"package:init": "./scripts/init-package.sh"
},
"husky": {
"hooks": {
"pre-push": "npm run test",
"pre-commit": "npm run lint:fix"
}
},
"devDependencies": {
"@types/jest": "^26.0.12",
"@types/node": "^14.10.1",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cross-env": "^7.0.2",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"prettier": "^2.1.1",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2"
},
"dependencies": {
"convable": "file:packages/convable",
"convert-case": "file:examples/convert-case"
}
}