forked from MarcosRava/model-structure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"author": {
"email": "[email protected]",
"name": "Marcos Rava"
},
"contributors": [
{
"name": "Fabrício Ferrari de Campos",
"email": "[email protected]",
"url": "http://vizir.com.br/"
},
{
"name": "Romário da Silva Lima",
"email": "[email protected]",
"url": "http://airroom.com.br/"
}
],
"name": "model-structure",
"version": "1.2.8",
"repository": {
"url": "https://github.com/MarcosRava/model-structure/"
},
"main": "./index.js",
"bugs": {
"url": "https://github.com/MarcosRava/model-structure/issues"
},
"keywords": [
"swagger",
"models",
"schema",
"db-migrate"
],
"description": "Models based on schema",
"dependencies": {
"async": "^0.9.0",
"async-validate": "^0.1.20",
"db-migrate": "^0.7.1",
"extend": "^1.2.1",
"moment": "^2.6.0",
"q": "^1.0.1"
},
"scripts": {
"test": "mocha",
"build": "gulp build",
"cover": "./node_modules/mocha/bin/mocha -R html-cov --require blanket > coverage.html"
},
"engines": {
"node": "*"
},
"config": {
"blanket": {
"data-cover-never": "node_modules",
"pattern": "src"
}
},
"devDependencies": {
"blanket": "^1.1.6",
"expect.js": "^0.3.1",
"gulp": "^3.7.0",
"gulp-browserify": "^0.5.0",
"gulp-concat": "^2.2.0",
"gulp-if": "^1.2.1",
"gulp-livereload": "^2.0.0",
"gulp-uglify": "^0.3.0",
"mocha": "^1.20.0",
"tiny-lr": "0.0.7",
"underscore": "^1.7.0"
}
}