-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "@svaj/actions",
"private": true,
"description": "Monorepo for my actions",
"keywords": [
"github",
"actions",
"ci",
"artifacts"
],
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/ts-jest",
"**/ts-jest/**"
]
},
"repository": "git@github.com:svaj/actions.git",
"bugs": {
"url": "https://github.com/svaj/actions/issues",
"email": "bugs@svajlenka.com"
},
"author": "Chris Svajlenka <chris@svajlenka.com> (https://svajlenka.com/)",
"license": "Apache-2.0",
"engines": {
"node": ">12.0.0",
"yarn": ">1.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --parallel precommit",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"scripts": {
"audit-all": "lerna exec --parallel -- yarn audit --level 4",
"bootstrap": "lerna bootstrap",
"build": "lerna run --parallel tsc",
"check-all": "lerna run --parallel -- check-all",
"lint": "eslint .",
"lint:fix": "yarn run lint --fix",
"new-package": "scripts/create-package.sh",
"test": "jest",
"test:report": "allure generate"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@octokit/types": "^3.0.0",
"@octokit/webhooks": "^7.6.0",
"@types/faker": "^4.1.12",
"@types/jest": "^25.2.2",
"@types/node": "^14.0.1",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"commitlint": "^8.3.5",
"eslint": "7",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-github": "^3.4.1",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-markdown": "^2.0.0-alpha.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-tsdoc": "^0.2.4",
"faker": "^4.1.0",
"husky": "^4.2.3",
"jest": "^26.0.1",
"jest-allure": "^0.1.1",
"jest-cli": "^26.0.1",
"jest-html-reporters": "^1.2.1",
"jest-runner-tsc": "^1.6.0",
"lerna": "^3.21.0",
"lint-staged": "^10.0.8",
"mkdirp": "^1.0.3",
"nock": "^12.0.3",
"prettier": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.2.1",
"tsdoc": "^0.0.4",
"typedoc": "^0.17.6",
"typescript": "^3.9.2"
}
}