-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "mongoose-timeseries",
"version": "1.3.0",
"description": "a time series data and analytics storage plugin for Mongoose",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "node ./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jaredreich/mongoose-timeseries.git"
},
"keywords": [
"mongoose",
"time",
"series",
"data",
"analytics",
"mongodb",
"storage"
],
"author": "Jared Reich <[email protected]> (https://jaredreich.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jaredreich/mongoose-timeseries/issues"
},
"homepage": "https://github.com/jaredreich/mongoose-timeseries#readme",
"devDependencies": {
"chai": "3.5.0",
"eslint": "3.2.2",
"eslint-config-standard": "5.3.5",
"eslint-plugin-promise": "2.0.0",
"eslint-plugin-standard": "2.0.0",
"mocha": "3.0.1",
"mockgoose": "6.0.6"
},
"dependencies": {
"mongoose": "4.5.8"
}
}