forked from carlrygart/portainer-stack-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "portainer-stack-deploy",
"version": "1.0.0",
"description": "Github Action to deploy a stack to a Portainer instance",
"author": "Carl Rygart <carlrygart>",
"license": "MIT",
"main": "lib/main.js",
"keywords": [
"actions",
"node"
],
"scripts": {
"build": "tsc -p tsconfig.publish.json",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint ./**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "npm run test:ts && npm run test:unit",
"test:unit": "jest",
"test:ts": "tsc --noEmit",
"all": "npm run build && npm run format && npm run lint && npm run package && npm run test"
},
"dependencies": {
"@actions/core": "^1.9.0",
"axios": "^0.27.2",
"handlebars": "^4.7.7"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"@typescript-eslint/parser": "^5.30.3",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.19.0",
"eslint-plugin-github": "^4.3.6",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.2",
"jest-circus": "^28.1.2",
"js-yaml": "^4.1.0",
"nock": "^13.2.8",
"prettier": "2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}