forked from stryd/fetch-release-asset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 883 Bytes
/
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
{
"name": "@stryd/fetch-release-asset",
"version": "1.1.1",
"description": "",
"main": "lib/index.js",
"scripts": {
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build": "rimraf lib && rimraf dist && tsc && ncc build",
"test": "jest",
"test:watch": "jest --watch",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|jsx|tsx|json)\""
},
"author": "Matt Wilcox",
"license": "UNLICENSED",
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"jest-circus": "^26.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"@zeit/ncc": "^0.22.3",
"jest": "^26.1.0",
"typescript": "^3.9.6"
},
"dependencies": {
"@actions/core": "^1.2.4",
"axios": "^0.19.2",
"mkdirp": "^1.0.4"
}
}