-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "@peachjar/action-deploy-to-env",
"version": "0.0.1",
"private": true,
"description": "Deploy to a Peachjar Environment",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json -p tsconfig.json",
"pack": "ncc build",
"test": "./node_modules/.bin/jest --config jest.config.js --forceExit",
"coverage": "./node_modules/.bin/jest --config jest.config.js --forceExit --coverage --verbose",
"all": "npm run build && npm run lint && npm run pack && npm run coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "rclayton-the-terrible",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.0",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.0",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.7.12",
"@zeit/ncc": "^0.20.5",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"jest-junit": "^6.2.1",
"js-yaml": "^3.13.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.16.0",
"ts-jest": "^24.2.0",
"typescript": "^3.6.4"
}
}