This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
forked from nick-fields/private-action-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.23 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
{
"name": "private-action-loader",
"version": "1.0.0",
"description": "Enables private GitHub Actions to be reused across repositories",
"main": "dist/index.js",
"scripts": {
"clean": "npx rimraf node_modules dist",
"test": "jest --coverage",
"prepare": "ncc build src/index.ts",
"lint": "npm run lint:ts && npm run lint:yaml",
"lint:ts": "eslint --config configs/.eslintrc.js **/*.ts --fix",
"lint:yaml": "yamllint *.yml *.yaml --fix",
"coverage:report": "codecov",
"coverage:serve": "npx http-server ./coverage/lcov-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nick-invision/private-action-loader.git"
},
"author": {
"name": "Nick Fields"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nick-invision/private-action-loader/issues"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"rimraf": "^3.0.2",
"yaml": "^1.10.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@types/jest": "^26.0.20",
"@types/node": "14.14.31",
"@types/rimraf": "^3.0.0",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"@zeit/ncc": "^0.22.3",
"codecov": "^3.8.1",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "5.1.2",
"jest": "^25.5.4",
"lint-staged": "^10.5.4",
"minimist": ">=0.2.1",
"mkdirp": "1.0.4",
"prettier": "2.2.1",
"semantic-release": "17.4.0",
"standard": "^16.0.3",
"ts-jest": "25.5.1",
"typescript": "^3.9.9",
"yaml-lint": "^1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "npm run prepare && git add .",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS || node .lintError.js"
}
},
"lint-staged": {
"*.js": [
"npm run lint:js --",
"git add"
],
"*.yml": [
"npm run lint:yml --",
"git add"
]
}
}