forked from chrislennon/action-aws-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.6 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
{
"name": "action-aws-cli",
"version": "0.0.1",
"private": true,
"description": "Installs AWS cli",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"format": "eslint --fix './src/*.ts'; eslint --fix './tests/*.ts'",
"publish": "branch=$(git rev-parse --symbolic-full-name --abbrev-ref HEAD); if [[ $branch == \"master\" ]]; then npm run-script \"change-branch\"; else npm run-script \"create-publish\"; fi;",
"change-branch": "echo \"Should not publish on master\" && exit 1",
"create-publish": "npm i && npm run build && git rm -rq --ignore-unmatch ./node_modules && rm -rf ./node_modules && npm i --production && git add . && echo \"Ready to commit\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chrislennon/action-aws-cli.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "chrislennon",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"@actions/exec": "^1.0.0",
"@actions/github": "^1.0.0",
"@actions/io": "^1.0.0",
"@actions/tool-cache": "github:chrislennon/actions-toolkit-tool-cache#master",
"firstline": "^2.0.2",
"semver": "^6.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/nock": "^10.0.3",
"@types/node": "^12.0.4",
"@types/semver": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^5.16.0",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"nock": "^10.0.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}