This repository has been archived by the owner on Oct 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "@south-paw/action-netlify-deploy",
"version": "1.2.1",
"description": "Netlify deployments via GitHub actions",
"keywords": [],
"homepage": "https://github.com/South-Paw/action-netlify-deploy",
"bugs": "https://github.com/South-Paw/action-netlify-deploy/issues",
"license": "MIT",
"author": {
"name": "Alex Gabites",
"email": "hello@southpaw.co.nz",
"url": "http://southpaw.co.nz/"
},
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/South-Paw/action-netlify-deploy.git"
},
"scripts": {
"clean": "rimraf dist lib",
"build:tsc": "tsc",
"build:ncc": "ncc build",
"build": "npm run clean && npm run build:tsc && npm run build:ncc",
"lint": "npm run lint:type-check && npm run lint:eslint",
"lint:eslint": "eslint \"src/**/*.{js,ts}\"",
"lint:type-check": "tsc --noEmit",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"netlify": "^6.1.9"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@typescript-eslint/parser": "^4.15.1",
"@vercel/ncc": "^0.25.1",
"eslint": "^7.20.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.5",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
},
"private": true
}