This repository has been archived by the owner on Jun 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "rainway-doc-format",
"version": "1.1.0",
"description": "Rainway documentation formatter",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"rainway-doc-format": "dist/rainway-doc-format.js"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint src --ext .ts",
"build": "npm run lint && npm run build-ts && npm run build-ncc && npm run doc",
"build-ts": "tsc",
"build-ncc": "ncc build dist/action-rainway-doc-format.js --no-cache -s --license licenses.txt -o dist/ncc",
"doc": "npm run doc-extract && npm run doc-gen",
"doc-extract": "api-extractor run",
"doc-gen": "api-documenter markdown --input-folder ./temp --output-folder ./dist/docs",
"action-test": "echo Requires https://github.com/nektos/act to run properly! && act -j action_test"
},
"homepage": "https://rainway.com",
"bugs": {
"url": "https://forum.rainway.com/"
},
"author": "Rainway, Inc.",
"license": "MIT",
"keywords": [
"rainway",
"documentation",
"formatter"
],
"devDependencies": {
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@microsoft/api-documenter": "^7.15.1",
"@microsoft/api-extractor": "^7.19.4",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vercel/ncc": "^0.33.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"memfs": "^3.4.1",
"prettier": "^2.5.1",
"typescript": "^4.5.5"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/glob": "^0.2.0",
"arg": "^5.0.1"
}
}