generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.47 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
{
"name": "hasura-cloud-preview-apps",
"version": "0.1.10",
"private": true,
"description": "Create Hasura Cloud preview apps from metadata/migrations from your Git repo",
"main": "src/main.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "rm -rf dist & ncc build --source-map --license licenses.txt",
"main": "npm run package && node dist/index.js",
"test": "jest",
"yaml-test": "echo 'Validating action.yml syntax' && yaml-validator action.yml",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test && npm run yaml-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hasura/hasura-cloud-preview-apps.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"pre-commit": [
"format-check",
"lint"
],
"author": "",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.5.0",
"node-fetch": "^3.0.0",
"pg": "^8.7.1"
},
"devDependencies": {
"@types/node": "^16.10.1",
"@typescript-eslint/parser": "^4.28.3",
"@vercel/ncc": "^0.33.3",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.2.2",
"js-yaml": "^4.1.0",
"pre-commit": "^1.2.2",
"prettier": "2.2.1",
"ts-jest": "^27.0.3",
"typescript": "^4.1.3",
"yaml-validator": "^3.0.1"
}
}