-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.9 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.9 KB
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
{
"name": "commitd-actions",
"version": "0.0.0",
"private": true,
"description": "Committed GitHub Action",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write --ignore-unknown src/",
"format:check": "prettier --check --ignore-unknown src/",
"lint": "eslint src/**/*.ts --fix",
"lint:check": "eslint src/**/*.ts",
"package": "ncc build --license licenses.txt -o dist/${npm_config_action} src/${npm_config_action}/main.ts",
"package:all": "sh package-actions.sh",
"test": "jest",
"test:action": "npm run package --action=${npm_config_action} -- -q && npm test src/${npm_config_action}/main.test.ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commitd/actions.git"
},
"keywords": [
"actions",
"github"
],
"author": "Committed <opensource@committed.io>",
"license": "MIT",
"dependencies": {
"@actions/artifact": "^0.5.2",
"@actions/cache": "^1.0.7",
"@actions/core": "^1.2.6",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.2.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^7.0.1",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"lint-staged": "^11.0.0",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"prettier": {
"semi": false
},
"lint-staged": {
"src/**/*.ts": [
"eslint --cache --fix",
"prettier --ignore-unknown --write"
],
"**/*.{yml,md}": [
"prettier --ignore-unknown --write"
]
}
}