generated from EndBug/ts-action-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.2 KB
/
package.json
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
32
33
34
35
36
37
38
{
"name": "action-docs",
"version": "1.0.0",
"description": "Action that generates website docs for branches and tags using docgen",
"main": "lib/index.js",
"scripts": {
"build": "npm i && ncc build src/main.ts --minify --out lib",
"watch": "ncc build src/main.ts --watch --out lib",
"lint": "eslint ./src --ext ts && echo 'Lint complete.'",
"lint:fix": "eslint ./src --ext ts --fix && echo \"Lint & fix complete.\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dbots-pkg/action-docs.git"
},
"author": "Federico Grandi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dbots-pkg/action-docs/issues"
},
"homepage": "https://github.com/dbots-pkg/action-docs#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"semver": "^7.1.3",
"semver-sort": "0.0.4"
},
"devDependencies": {
"@actions/exec": "^1.0.3",
"@actions/io": "^1.0.2",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.13.0",
"@typescript-eslint/parser": "^2.13.0",
"@zeit/ncc": "^0.22.1",
"eslint": "^6.8.0",
"typescript": "^3.7.3"
}
}