http-client/package.json

40 lines
1.0 KiB
JSON
Raw Normal View History

2020-01-09 23:32:59 +00:00
{
2020-01-10 04:27:59 +00:00
"name": "@actions/http-client",
2020-04-06 14:30:03 +00:00
"version": "1.0.7",
2020-01-09 23:32:59 +00:00
"description": "Actions Http Client",
"main": "index.js",
"scripts": {
2020-01-12 02:23:55 +00:00
"build": "rm -Rf ./_out && tsc && cp package*.json ./_out && cp *.md ./_out && cp LICENSE ./_out && cp actions.png ./_out",
2020-04-10 13:17:13 +00:00
"test": "jest",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
"audit-check": "npm audit --audit-level=moderate"
2020-01-09 23:32:59 +00:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/http-client.git"
},
"keywords": [
"Actions",
"Http"
],
"author": "GitHub, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/actions/http-client/issues"
},
"homepage": "https://github.com/actions/http-client#readme",
"devDependencies": {
2020-03-25 12:47:39 +00:00
"@types/jest": "^25.1.4",
"@types/node": "^12.12.31",
"jest": "^25.1.0",
2020-04-10 13:17:13 +00:00
"prettier": "^2.0.4",
"proxy": "^1.0.1",
2020-03-25 12:47:39 +00:00
"ts-jest": "^25.2.1",
"typescript": "^3.8.3"
},
"dependencies": {
"tunnel": "0.0.6"
2020-01-09 23:32:59 +00:00
}
}