-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 861 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 861 Bytes
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
{
"name": "actions",
"version": "0.0.1",
"private": true,
"description": "GitHub actions to manage generation pipeline",
"scripts": {
"build": "tsc --build",
"check-licenses": "node bin/check-licenses.js",
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "lib/"
}
}
},
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.2.0"
},
"devDependencies": {
"@types/node": "^15.12.5",
"removeNPMAbsolutePaths": "2.0.0",
"typescript": "^3.7.5"
}
}