-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.44 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "onex-utils-packages",
"scripts": {
"bootstrap": "yarn install",
"build": "lerna run --stream --sort build",
"publish": "lerna publish --graph-type all",
"lint": "eslint packages --fix --ext .js --ext .ts",
"commit": "git-cz",
"test": "jest"
},
"private": true,
"resolutions": {
"**/jest-haste-map/fsevents": "2.1.3"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-async-to-generator": "^7.12.1",
"@babel/plugin-transform-modules-commonjs": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/plugin-transform-strict-mode": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@iceworks/spec": "^1.1.0",
"@types/eslint": "^7.2.2",
"@types/jest": "^26.0.14",
"@types/lodash": "^4.14.161",
"@types/node": "^14.11.2",
"@types/typescript": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.5.2",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.26.0",
"commitizen": "^4.2.1",
"commitlint": "^11.0.0",
"cz-lerna-changelog": "^2.0.3",
"eslint": "^7.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-tsdoc": "^0.2.10",
"git-cz": "^4.7.1",
"husky": "^4.3.0",
"jest": "^26.5.3",
"lerna": "^3.22.1",
"lint-staged": "^10.4.0",
"onex-utils": "^0.0.24",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/unity-template/onex-utils-packages.git"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"changelog": {
"labels": {
"feat": ":rocket: New Feature",
"bug": ":bug: Bug Fix",
"doc": ":memo: Documentation",
"internal": ":house: Internal",
"breaking": ":boom: Breaking Change"
}
}
}