-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.94 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
{
"name": "root",
"version": "1.0.0",
"repository": "[email protected]:wunderdogsw/proem.git",
"license": "MIT",
"private": true,
"workspaces": [
"package"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged --pattern \"./src/**/*.ts\" --pattern \"./test/**/*.ts\""
}
},
"scripts": {
"lint": "eslint **/*.ts",
"test": "jest --coverage",
"test:watch": "jest --watch",
"commit": "git-cz",
"build": "yarn build:compile && yarn build:append-references",
"build:compile": "tsc -p tsconfig.build.json",
"build:append-references": "node scripts/append-references.js",
"clean": "node scripts/clean.js",
"release": "cd package && npx semantic-release"
},
"resolutions": {
"micromatch": "4.0.2"
},
"devDependencies": {
"@commitlint/config-conventional": "9.0.1",
"@types/benchmark": "1.0.33",
"@types/jest": "26.0.3",
"@types/node": "12.12.47",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/eslint-plugin-tslint": "3.5.0",
"@typescript-eslint/parser": "2.34.0",
"benchmark": "2.1.4",
"commitizen": "4.1.2",
"commitlint": "9.0.1",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.4.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-jsdoc": "28.6.1",
"husky": "4.2.5",
"jest": "26.1.0",
"microtime": "3.0.0",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"rimraf": "3.0.2",
"ts-jest": "26.1.1",
"ts-node": "8.10.2",
"tslint": "6.1.2",
"typescript": "3.9.6"
},
"dependencies": {
"ts-toolbelt": "^4.12.0"
}
}