-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.09 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
{
"name": "grow-mongoose-models",
"version": "1.0.3",
"description": "grow mongoose models",
"main": "index.js",
"scripts": {
"compile": "npm run clean && babel --presets es2015 -d lib/ src/",
"clean": "rm -rf lib/",
"prepublish": "npm run compile",
"start": "node lib/server.js",
"test": "npm run compile && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aruntk/grow-mongoose-models.git"
},
"author": "CommonGarden",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/aruntk/grow-mongoose-models/issues"
},
"homepage": "https://github.com/aruntk/grow-mongoose-models#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"jest": "^18.1.0"
},
"dependencies": {
"bcrypt": "^1.0.2",
"bluebird": "^3.4.7",
"chance": "^1.0.4",
"es6-error": "^4.0.1",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"mongoose": "^4.8.1",
"zxcvbn": "^4.4.1"
}
}