-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.48 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
{
"name": "terrakube-action-github",
"version": "1.0.0",
"description": "Github Action for Terrakube",
"main": "dist/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "npm run build && jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": "git+https://github.com/AzBuilder/terrakube-action-github.git",
"keywords": [
"actions",
"node",
"setup"
],
"author": "Alfredo España <[email protected]>",
"license": "apache-2.0",
"bugs": {
"url": "https://github.com/AzBuilder/terrakube-action-github/issues"
},
"homepage": "https://github.com/AzBuilder/terrakube-action-github#readme",
"private": false,
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.0",
"@actions/glob": "^0.3.0",
"@actions/http-client": "^1.0.11",
"query-string": "^7.1.1"
},
"devDependencies": {
"@types/node": "^16.10.5",
"@types/simple-oauth2": "^4.1.1",
"@typescript-eslint/parser": "^5.8.1",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-plugin-github": "^4.3.2",
"eslint-plugin-jest": "^25.3.2",
"jest": "^27.2.5",
"js-yaml": "^4.1.0",
"prettier": "2.5.1",
"ts-jest": "^27.1.2",
"typescript": "^4.6.3"
}
}