generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "action-hasura-change-summary",
"version": "0.1.0",
"private": true,
"description": "Generate readable Hasura metadata change summaries",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint . --ext .ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest --watch",
"test:ci": "jest",
"all": "npm run build && npm run format:check && npm run lint && npm run package && npm run test:ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fieldguide/action-hasura-change-summary.git"
},
"keywords": [
"actions",
"hasura",
"metadata",
"change",
"summary",
"diff"
],
"author": "Nick Amoscato <nick@amoscato.com>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@hasura/metadata": "^1.0.2",
"js-yaml": "^4.1.0",
"jsondiffpatch": "^0.4.1",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"prettier": "^2.7.1",
"urlcat": "^2.0.4"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.189",
"@types/mustache": "^4.2.1",
"@types/node": "^16.18.3",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.28.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^27.1.5",
"html-validate": "^7.10.0",
"jest": "^28.1.3",
"ts-jest": "^28.0.7",
"typescript": "^4.9.3"
}
}