typescript-action/package.json

34 lines
684 B
JSON
Raw Normal View History

2019-07-22 18:15:40 +00:00
{
2019-09-21 12:56:30 +00:00
"name": "typescript-action",
2019-07-22 18:15:40 +00:00
"version": "0.0.0",
"private": true,
2019-09-11 03:28:52 +00:00
"description": "JavaScript template action",
2019-07-22 18:15:40 +00:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/javascript-template.git"
2019-07-22 18:15:40 +00:00
},
"keywords": [
"actions",
"node",
"setup"
],
2019-09-11 03:28:52 +00:00
"author": "YourNameOrOrganization",
2019-07-22 18:15:40 +00:00
"license": "MIT",
"dependencies": {
2019-08-20 20:35:22 +00:00
"@actions/core": "^1.0.0"
2019-07-22 18:15:40 +00:00
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
}
}