-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "@pr-mpt/actions-commit-hash",
"description": "Output commit hash (short and long) with optional prefix",
"main": "lib/main.js",
"scripts": {
"compile": "tsc",
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "npm run compile && ncc build --source-map --license licenses.txt",
"test": "jest",
"style": "npm run format && npm run lint",
"all": "npm run style && npm run package && npm test"
},
"keywords": [
"actions",
"github-actions"
],
"author": "Samuel Ryan <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@actions/core": "^1.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0.25.1",
"eslint": "^8",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^26",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.0",
"prettier": "2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}