-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "sequelize-embed",
"version": "2.1.1",
"description": "Easily insert and update sequelize models with deeply nested associations",
"main": "src/index.js",
"scripts": {
"test": "./node_modules/jasmine-node/bin/jasmine-node ./test",
"test-travis": "./node_modules/istanbul/lib/cli.js cover --root . --include-all-sources jasmine-node ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wsiegenthaler/sequelize-embed.git"
},
"keywords": [ "sequelize", "associations", "model", "sync", "deep", "embed", "json", "document", "epilogue", "rest" ],
"author": "Weston Siegenthaler",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/wsiegenthaler/sequelize-embed/issues"
},
"homepage": "https://github.com/wsiegenthaler/sequelize-embed#readme",
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"jasmine": "^2.5.3",
"jasmine-node": "^1.14.5",
"sequelize": "^4.31.0",
"sqlite3": "^3.1.8"
},
"dependencies": {
"bluebird": "^3.4.7",
"lodash": "^4.17.4"
}
}