1
0
Fork 0
toolkit/packages/core/package.json

42 lines
894 B
JSON
Raw Normal View History

2019-05-16 20:40:21 +00:00
{
"name": "@actions/core",
"version": "1.2.4",
2019-05-16 20:40:21 +00:00
"description": "Actions core lib",
"keywords": [
2019-08-23 21:39:40 +00:00
"github",
"actions",
"core"
2019-05-16 20:40:21 +00:00
],
2019-05-16 21:16:39 +00:00
"homepage": "https://github.com/actions/toolkit/tree/master/packages/core",
2019-05-16 20:40:21 +00:00
"license": "MIT",
"main": "lib/core.js",
"types": "lib/core.d.ts",
2019-05-16 20:40:21 +00:00
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib",
"!.DS_Store"
2019-05-16 20:40:21 +00:00
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/core"
2019-05-16 20:40:21 +00:00
},
"scripts": {
"audit-moderate": "npm install && npm audit --audit-level=moderate",
2019-05-16 20:40:21 +00:00
"test": "echo \"Error: run tests from root\" && exit 1",
"tsc": "tsc"
},
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
2019-05-17 03:36:45 +00:00
},
"devDependencies": {
"@types/node": "^12.0.2"
2019-05-16 20:40:21 +00:00
}
}