-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "mongoose-schema-parser",
"version": "0.2.7",
"description": "Parse mongoose schema to JSON",
"main": "index.js",
"scripts": {
"lint": "standard --verbose",
"lint-fix": "standard --fix",
"test": "npm run lint && ava --verbose --timeout=100s",
"test-watch": "ava --verbose --watch --color --timeout=100s",
"eslint": "./node_modules/.bin/eslint -c .eslintrc lib test",
"eslint-fix": "./node_modules/.bin/eslint -c .eslintrc lib test --fix",
"test-nyc": "nyc ava",
"test-nyc-html": "npx nyc report --reporter=html",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/medolino/mongoose-schema-parser.git"
},
"keywords": [
"mongoose",
"schema",
"parse",
"parser",
"mongoose-parser",
"schema-parser"
],
"author": {
"name": "Miran Setinc - Lino",
"url": "https://github.com/medolino"
},
"license": "ISC",
"dependencies": {
"chalk": "^4.1.2",
"glob": "^10.3.10",
"mongoose": "^8.1.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"ava": "^6.1.1",
"coveralls": "^3.1.1",
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"nyc": "^15.1.0",
"standard": "^17.1.0"
},
"ava": {
"files": [
"test/**/test-*.js"
]
},
"nyc": {
"all": true
},
"bin": {
"mongoose-schema-parser": "./bin/parse.sh"
}
}