-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "node-mongoose-util",
"version": "2.1.0",
"description": "Utility library with helper function for mongoose and node",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/**/*.spec.js --reporter spec"
},
"engines": {
"node": ">=7.6.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kasongoyo/node-mongoose-util.git"
},
"keywords": [
"node",
"mongoose",
"utilities",
"helpers"
],
"bugs": {
"url": "https://github.com/kasongoyo/node-mongoose-util/issues"
},
"author": {
"name": "kasongoyo",
"email": "kasongoyo@gmail.com",
"url": "https://github.com/kasongoyo"
},
"license": "MIT",
"files": [
"lib/*"
],
"contributors": [
{
"name": "kasongoyo",
"github": "https://github.com/kasongoyo"
}
],
"homepage": "https://github.com/kasongoyo/node-mongoose-util#readme",
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^8.0.1",
"mocha": "^6.2.0"
}
}