-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "jsdoc-plugin-mongoose",
"version": "1.0.0",
"desciption": "Plugin for JSDoc to automatically generate JSDoc documentation from Mongoose schemas for corresponding models, including data types of fields and contextual descriptions.",
"repository": {
"url": "[email protected]:sgilroy/jsdoc-plugin-mongoose.git",
"type": "git"
},
"author": "Scott Gilroy <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^23.4.2",
"jsdoc": "^3.5.5",
"jsdoc-x": "^3.0.0",
"prettier": "^1.13.4"
},
"scripts": {
"test": "npm run lint && NODE_PATH=./node_modules/jsdoc/lib jest",
"fix": "npm run eslint -- --fix & npm run prettier -- --write",
"lint": "npm run eslint & wait",
"prettier": "prettier -l README.md package.json",
"eslint": "eslint ."
},
"prettier": {
"singleQuote": true,
"bracketSpacing": false
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"env": {
"node": true,
"es6": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 2017
}
},
"jest": {
"testURL": "http://localhost/"
},
"dependencies": {
"comment-parser": "^0.5.0",
"lodash": "^4.17.10"
}
}