forked from triwav/roku-jsdocs-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
69 lines (69 loc) · 2.16 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "brighterscript-jsdocs-plugin",
"version": "0.7.2",
"description": "Plugin For JSDoc that converts Brighterscript files into comments compatible with JSDoc",
"author": "Mark Pearce",
"scripts": {
"preversion": "npm run build && npm run lint && npm run test",
"clean": "rm -rf dist",
"docs": "npm run build && rm -rf docs && ./node_modules/.bin/jsdoc -c jsdoc.json -d docs",
"lint": "eslint \"src/**\"",
"build": "npm run clean && tsc",
"prepack": "npm run preversion && npm run build && cp ./dist/convert-brighterscript-docs.js ./",
"test": "mocha",
"testdocs": "sh ./scripts/test.sh"
},
"files": [
"convert-brighterscript-docs.js"
],
"mocha": {
"spec": "src/**/*.spec.ts",
"require": [
"source-map-support/register",
"ts-node/register"
],
"fullTrace": true,
"timeout": 2000,
"watchExtensions": [
"ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwpearce/brighterscript-jsdocs-plugin.git"
},
"license": "ISC",
"keywords": [
"brightscript",
"brighterscript",
"roku",
"jsdoc",
"jsdocs",
"brightscriptdoc"
],
"bugs": {
"url": "https://github.com/markwpearce/brighterscript-jsdocs-plugin/issues"
},
"homepage": "https://github.com/markwpearce/brighterscript-jsdocs-plugin",
"dependencies": {
"brighterscript": "^0.67.4",
"jsdoc": "^4.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^5.2.5",
"@types/node": "^22.5.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"chai": "^4.2.0",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^8.16.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-no-only-tests": "2.6.0",
"mocha": "^9.1.3",
"ts-node": "^10.9.2",
"undent": "^0.1.0"
}
}