forked from kiegroup/github-action-build-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.02 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
{
"name": "@kie/build-chain-action",
"version": "2.3.34",
"description": "Library to execute commands based on github projects dependencies.",
"main": "dist/build-chain-cli.js",
"author": "Enrique Mingorance Cano <[email protected]>",
"license": "SEE LICENSE IN LICENSE",
"private": false,
"bin": {
"build-chain-action": "./bin/build-chain-cli.js"
},
"scripts": {
"test": "jest",
"locktt": "locktt",
"lint": "eslint .",
"prettier": "prettier -l src/** test/**/*.js",
"prettier-write": "prettier --write .",
"lint-final": "npm run prettier && npm run lint",
"prepublish": "npm run lint && npm run test",
"ncc-build": "ncc build --minify bin/build-chain-event.js"
},
"git-pre-hooks": {
"pre-commit": "npm run lint && npm run prettier && npm run ncc-build && git add dist/index.js",
"pre-push": "npm ci"
},
"dependencies": {
"@actions/artifact": "^0.3.5",
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"@actions/glob": "^0.1.0",
"@kie/build-chain-configuration-reader": "^2.2.5",
"@octokit/rest": "^17.6.0",
"argparse": "^2.0.1",
"dotenv": "^8.2.0",
"fs-extra": "^9.0.0",
"js-yaml": "^3.14.0",
"node-xlsx": "^0.17.2",
"pretty-ms": "^7.0.1",
"tmp": "^0.2.1"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.10.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.19.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"git-pre-hooks": "^1.2.1",
"jest": "^25.5.1",
"mock-spawn": "^0.2.6",
"prettier": "^2.0.5"
},
"jest": {
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"locally_execution/"
]
},
"prettier": {
"trailingComma": "none",
"arrowParens": "avoid"
},
"engines": {
"node": ">= 12.18.0"
}
}