Files
typescript-action/package.json
T

44 lines
1.1 KiB
JSON
Raw Normal View History

2019-07-22 14:15:40 -04:00
{
2019-09-21 08:56:30 -04:00
"name": "typescript-action",
2019-07-22 14:15:40 -04:00
"version": "0.0.0",
"private": true,
2019-09-25 14:16:01 -05:00
"description": "TypeScript template action",
2019-07-22 14:15:40 -04:00
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
2019-07-22 14:15:40 -04:00
},
"repository": {
"type": "git",
2019-09-25 14:16:01 -05:00
"url": "git+https://github.com/actions/typescript-action.git"
2019-07-22 14:15:40 -04:00
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "",
2019-07-22 14:15:40 -04:00
"license": "MIT",
"dependencies": {
2022-10-06 12:22:32 +01:00
"@actions/core": "^1.10.0"
2019-07-22 14:15:40 -04:00
},
"devDependencies": {
2023-08-24 03:58:31 +00:00
"@types/node": "^20.5.4",
"@typescript-eslint/parser": "^5.59.2",
2023-04-05 16:14:53 -04:00
"@vercel/ncc": "^0.36.1",
2023-05-04 16:37:32 -04:00
"eslint": "^8.39.0",
2023-04-05 16:14:53 -04:00
"eslint-plugin-github": "^4.7.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.5.0",
2021-07-19 11:18:32 -04:00
"js-yaml": "^4.1.0",
2023-05-04 16:33:23 -04:00
"prettier": "^2.8.8",
2023-04-05 16:14:53 -04:00
"ts-jest": "^29.1.0",
2023-04-11 10:11:15 -04:00
"typescript": "^5.0.4"
2019-07-22 14:15:40 -04:00
}
}