-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.02 KB
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": "mongoose-decorator",
"version": "0.1.1",
"description": "ES7-Style decorators for mongoose. Declare and decorate your models",
"main": "lib/decorators.js",
"scripts": {
"build": "node_modules/.bin/babel src -d lib",
"prepublish": "node_modules/.bin/babel src -d lib",
"test": "mocha --compilers js:babel-register 'test/*.js'"
},
"keywords": [
"mongo",
"mongoose",
"mongoosejs",
"plugin",
"decorators",
"es6",
"es7",
"annotations"
],
"author": "Francis Wertz <francis.wertz@seisan.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/fwertz/mongoose-decorator.git"
},
"bugs": {
"url": "https://github.com/fwertz/mongoose-decorator/issues"
},
"dependencies": {
"mongoose": "^4.5.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.5.3"
}
}