-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "@rojo2/mongoose-date",
"version": "1.1.2",
"description": "Mongoose Plugin that saves creation and modification dates",
"main": "dist/date.cjs.js",
"module": "dist/date.esm.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c",
"test": "cross-env NODE_ENV=test mocha --require babel-core/register",
"test:watch": "cross-env NODE_ENV=test mocha --watch --require babel-core/register"
},
"files": [
"dist"
],
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"chai": "^3.5.0",
"cross-env": "^5.1.5",
"mocha": "^2.5.3",
"mongoose": "^4.5.5",
"rollup": "^0.59.0",
"rollup-plugin-babel": "^3.0.4"
},
"author": "ROJO 2 <[email protected]> (http://rojo2.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rojo2/mongoose-date.git"
},
"keywords": [
"mongoose",
"date"
],
"bugs": {
"url": "https://github.com/rojo2/mongoose-date/issues"
},
"homepage": "https://github.com/rojo2/mongoose-date#readme"
}