-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 KB
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
{
"name": "jsjsdoc",
"description": "jsjsdoc is a documentation generator that uses javascript within comments to define documentation",
"version": "0.1.6",
"author": {
"name": "James Crosby",
"email": "james@coggle.it"
},
"keywords": [
"documentation",
"doc",
"markdown"
],
"repository": {
"type": "git",
"url": "https://github.com/coggle/jsjsdoc.git"
},
"homepage": "https://github.com/Coggle/jsjsdoc",
"bugs": {
"url": "https://github.com/Coggle/jsjsdoc/issues",
"email": "jsjsdoc-bugs@coggle.it"
},
"license": "MIT",
"main": "index",
"bin": {
"jsjsdoc": "./bin/jsjsdoc"
},
"scripts": {
"test": "node ./node_modules/.bin/grunt mochaTest"
},
"dependencies": {
"acorn": "^5.3.0",
"async": "^2.6.0",
"commander": "^2.13.0"
},
"devDependencies": {
"assert": "^1.4.1",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^4.1.0"
}
}