This repository has been archived by the owner on Apr 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
70
71
72
73
{
"name": "coboldoc",
"version": "1.2.0",
"description": "CLI tool to generate documentation for COBOL",
"main": "./lib/index.js",
"bin": {
"coboldoc": "./lib/index.js"
},
"scripts": {
"start": "npm run build && npm run global",
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha -r ts-node/register tests/**/*.spec.ts",
"lint": "tslint -p . --fix",
"copy:resources": "copyfiles -u 1 'src/resources/**' 'lib'",
"build": "npm run clean:some && tsc -p . && npm run copy:resources",
"global": "npm i -g && coboldoc",
"clean:some": "rm -rf ./lib ./docs",
"clean:all": "rm -rf ./node_modules ./package-lock.json ./lib ./docs",
"refresh": "npm run clean:all && npm install",
"tscov": "tscov --min-coverage 90",
"tscov:d": "tscov --details",
"publish-package": "npm run build && npm publish",
"docs": "typedoc --out docs ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunopacheco1/coboldoc.git"
},
"keywords": [
"COBOL",
"cli",
"community",
"documentation",
"generator",
"markdown",
"html"
],
"author": "brunopacheco1",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/brunopacheco1/coboldoc/issues"
},
"homepage": "https://github.com/brunopacheco1/coboldoc#readme",
"devDependencies": {
"@liftr/tscov": "^1.4.7",
"@types/chai": "^4.2.12",
"@types/ejs": "^3.0.4",
"@types/figlet": "^1.2.0",
"@types/mocha": "^8.0.1",
"@types/node": "^14.0.26",
"@types/xml2js": "^0.4.5",
"chai": "^4.2.0",
"copyfiles": "^2.3.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.7"
},
"dependencies": {
"clear": "^0.1.0",
"commander": "^6.0.0",
"ejs": "^3.1.3",
"figlet": "^1.5.0",
"inversify": "^5.0.1",
"kleur": "^4.0.2",
"reflect-metadata": "^0.1.13",
"tslib": "^2.0.0",
"xml2js": "^0.4.23"
}
}