-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "action-argocd-deploy",
"version": "0.0.1",
"description": "Action to deploy a values file to argo using the api",
"main": "src/index.ts",
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"ci:build": "npm run build && npm run package",
"ci:test": "npm run test",
"format": "prettier --write .",
"lint": "eslint \"{src,test}/**/*.ts\"",
"package": "rimraf dist && ncc build --source-map",
"test": "dotenv ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejhayes/action-argocd-deploy.git"
},
"author": "Eric Hayes",
"license": "ISC",
"types": "./dist/index.d.ts",
"bugs": {
"url": "https://github.com/ejhayes/action-argocd-deploy/issues"
},
"homepage": "https://github.com/ejhayes/action-argocd-deploy#readme",
"devDependencies": {
"@actions/core": "^1.10.0",
"@auto-it/all-contributors": "^11.0.5",
"@auto-it/first-time-contributor": "^11.0.5",
"@auto-it/git-tag": "^11.0.5",
"@modiohealth/eslint-config": "^0.0.5--canary.49d6ab9.0",
"@types/diff": "^5.0.2",
"@types/js-yaml": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@vercel/ncc": "^0.34.0",
"action-docs": "^1.0.4",
"auto": "^11.0.5",
"dotenv-cli": "^7.0.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"typescript": "^4.8.3"
},
"dependencies": {
"diff": "^5.1.0",
"js-yaml": "^4.1.0",
"typed-rest-client": "^1.8.9"
}
}