forked from vikpe/mongoose-mpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.59 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
{
"name": "mongoose-mpath",
"version": "2.0.14",
"description": "Mongoose plugin for tree hierarchy using the materialized path pattern.",
"keywords": [
"mongoose",
"materialized",
"path",
"tree",
"mongodb"
],
"author": "Viktor Persson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vikpe/mongoose-mpath.git"
},
"bugs": {
"url": "https://github.com/vikpe/mongoose-mpath/issues"
},
"homepage": "https://github.com/vikpe/mongoose-mpath",
"scripts": {
"test": "nyc --source-map --produce-source-map mocha --require @babel/polyfill --require @babel/register --timeout 8000 --exit",
"test:watch": "nyc --source-map --produce-source-map mocha --require @babel/polyfill --require @babel/register -w",
"coverage": "nyc report --reporter=text-lcov > coverage/lcov.info",
"prettier": "prettier --write \"{lib,test}/**/*.js\""
},
"main": "index.js",
"dependencies": {
"mongoose": "^5.6.9",
"stream-worker": "^2.0.1"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"async": "^3.1.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"shortid": "^2.2.14",
"sinon": "^7.4.1",
"sinon-mongoose": "^2.3.0"
}
}