-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "cgx",
"version": "1.14.1",
"description": "Generate all the recommended markdown documentation/templates (pre-filled) for the Github and Gitlab community standards. Files for CodeCommit (AWS) or Bitbucket can be generated too",
"author": "Jeroen Ouwehand",
"repository": "https://github.com/jeroenouw/cgx",
"license": "MIT",
"main": "./lib/index.js",
"bin": {
"cgx": "bin/cgx"
},
"keywords": [
"cli",
"cgx",
"community",
"typescript",
"javascript",
"nodejs",
"documentation",
"generator",
"template",
"markdown"
],
"scripts": {
"start": "npm run build && npm run global",
"test": "npm run lint && npm run test:unit",
"test:unit": "nyc mocha",
"lint": "tslint -p . --fix",
"build": "npm run clean:some && tsc -p .",
"global": "npm i -g && cgx",
"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"
},
"dependencies": {
"figlet": "^1.5.2",
"fs-extra": "^10.0.1",
"inquirer": "^8.2.0",
"kleur": "^4.1.4",
"tslib": "^2.3.1"
},
"devDependencies": {
"@liftr/tscov": "^2.0.0",
"@types/chai": "^4.2.22",
"@types/figlet": "^1.5.4",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.2",
"@types/sinon": "^10.0.4",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.3.4",
"mocha": "^9.1.2",
"mocha-junit-reporter": "^2.0.0",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typedoc": "^0.22.12",
"typescript": "^4.5.5"
}
}