-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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": "mongoose-orchestrator",
"version": "0.6.0",
"description": "On the fly references to attributes synchronisation.",
"main": "./lib/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"test-codecov": "istanbul cover -x test _mocha -- -R spec --compilers js:babel-register test && codecov",
"prepublish": "npm run build",
"build": "babel src -d lib"
},
"author": "rec <yo@rec.cool>",
"repository": {
"type": "git",
"url": "https://github.com/RodrigoEspinosa/mongoose-orchestrator.git"
},
"bugs": {
"url": "https://github.com/RodrigoEspinosa/mongoose-orchestrator/issues"
},
"homepage": "https://github.com/RodrigoEspinosa/mongoose-orchestrator",
"keywords": [
"mongoose",
"plugin",
"references",
"attributes",
"orchestrator"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.3.0",
"mongoose": "^4.4.3"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
}
}