This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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": "node-sdk",
"description": "SecurityScorecard Dev Tools",
"version": "0.0.2",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": "16.16.0"
},
"scripts": {
"lerna": "lerna",
"build": "lerna run build",
"lint": "eslint . --ext .ts --ext .js",
"commit-msg": "[[ -n $HUSKY_BYPASS ]] || commitlint -e $HUSKY_GIT_PARAMS",
"pre-commit": "[[ -n $HUSKY_BYPASS ]] || yarn lint",
"new-version": "cross-env HUSKY_BYPASS=true lerna version --conventional-commits -m 'chore(version): new version'",
"test": "jest"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt": "^13.1.0",
"@types/commander": "^2.12.2",
"@types/jest": "^26.0.24",
"@types/node": "^16.4.13",
"@types/ramda": "^0.27.44",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"babel-cli": "^6.26.0",
"babel-jest": "^27.0.6",
"cross-env": "^7.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.2",
"jest": "^27.0.6",
"lerna": "^6.0.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
},
"dependencies": {},
"resolutions": {
"**/ansi-regex": "^5.0.1",
"**/glob-parent": "^5.1.2",
"**/set-value": "^4.0.1",
"**/lodash": "^4.17.5",
"**/braces": "^2.3.1"
}
}