forked from kennethklee/node-mongoose-fixtures
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 889 Bytes
/
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
{
"name": "node-mongoose-fixtures",
"version": "0.3.0",
"description": "Easy way to create mongoose fixtures.",
"main": "index.js",
"scripts": {
"pretest": "./node_modules/.bin/jshint *.js lib",
"test": "./node_modules/.bin/mocha -R spec"
},
"repository": {
"type": "git",
"url": "git://github.com/kennethklee/node-mongoose-fixtures.git"
},
"keywords": [
"mongoose",
"test",
"fixtures"
],
"author": "Kenneth Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kennethklee/node-mongoose-fixtures/issues"
},
"homepage": "https://github.com/kennethklee/node-mongoose-fixtures",
"files": [
"index.js",
"lib"
],
"dependencies": {
"async": "~0.2.10"
},
"devDependencies": {
"mongoose": "~3.8.8",
"mockgoose": "~1.7.7",
"mocha": "~1.18.0",
"jshint": "~2.5.0"
}
}