-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
53 lines (53 loc) · 1.4 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
{
"name": "crojsdoc",
"description": "A documentation generator for JavaScript and CoffeeScript",
"version": "0.9.5",
"keywords": [
"documentation",
"doc",
"jsdoc",
"coffeescript"
],
"homepage": "https://croquiscom.github.com/crojsdoc",
"bugs": {
"url": "https://github.com/croquiscom/crojsdoc/issues"
},
"author": "Sangmin Yoon <[email protected]>",
"license": "MIT",
"bin": {
"crojsdoc": "./bin/crojsdoc"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build",
"build": "coffee -c -b -o lib src && tsc -p src/tsconfig.build.json",
"lint": "tslint -p tsconfig.json",
"doc": "node bin/crojsdoc",
"test": "NODE_ENV=test mocha --require coffeescript/register ./test/*.coffee"
},
"repository": {
"type": "git",
"url": "https://github.com/croquiscom/crojsdoc.git"
},
"dependencies": {
"fs.extra": "^1.3.2",
"glob": "^7.1.4",
"inflect": "^0.4.0",
"js-yaml": "^3.13.1",
"jsdoctypeparser": "^5.0.1",
"lodash": "^4.17.15",
"marked": "^0.7.0",
"optparse": "^1.0.5",
"pug": "^2.0.4",
"typescript": "^3.6.3",
"walkdir": "^0.4.1"
},
"devDependencies": {
"@types/node": "^12.7.9",
"chai": "^4.2.0",
"coffee-coverage": "^3.0.1",
"coffeescript": "^2.4.1",
"crojsdoc-plugin-auto-namespace": "^0.1.1",
"crojsdoc-plugin-underscore-private": "^0.1.0",
"mocha": "^6.2.1"
}
}