forked from KSDaemon/sails-hook-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 954 Bytes
/
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
{
"name": "sails-hook-sequelize",
"version": "1.0.2",
"description": "Sails.js hook to use sequelize ORM",
"main": "index.js",
"sails": {
"isHook": true
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/bootstrap.test.js test/unit/**/*.test.js"
},
"keywords": [
"sails",
"sequelize",
"orm"
],
"author": "Gergely Munkacsy",
"license": "MIT",
"devDependencies": {
"mocha": "^2.2.5",
"pg": "^4.4.0",
"pg-hstore": "^2.3.2",
"sails": "^0.11.0",
"should": "^7.0.2",
"supertest": "^1.0.1"
},
"dependencies": {
"continuation-local-storage": "^3.1.4",
"sequelize": "^3.5.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "[email protected]:festo/sails-hook-sequelize.git"
},
"bugs": {
"url": "https://github.com/festo/sails-hook-sequelize/issues"
},
"homepage": "https://github.com/festo/sails-hook-sequelize"
}