-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.29 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": "short-jsdoc",
"version": "0.2.8",
"description": "short and simple jsdoc Object Oriented syntax format and implementation",
"author": "Sebastián Gurin (cancerberoSgx)",
"dependencies": {
"esprima": "4.0.1",
"shelljs": "^0.8.2",
"underscore": "^1.9.1",
"yargs": "^12.0.2"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-browserify": "^5.3.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^2.0.0",
"grunt-contrib-jshint": "^2.0.0",
"grunt-contrib-jst": "^1.0.0",
"grunt-contrib-less": "^2.0.0",
"grunt-contrib-uglify": "^4.0.0",
"grunt-contrib-watch": "^1.1.0",
"jasmine": "^3.3.0",
"matchdep": "^2.0.0"
},
"main": "./src/shortjsdoc.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "node node_modules/jasmine/bin/jasmine.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cancerberoSgx/short-jsdoc.git"
},
"keywords": [
"jsdoc",
"JavaScript",
"documentation",
"javadoc",
"source",
"code",
"annotation"
],
"bin": {
"short-jsdoc": "./bin/short-jsdoc-cli.js"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/cancerberoSgx/short-jsdoc/issues"
},
"homepage": "https://github.com/cancerberoSgx/short-jsdoc"
}