forked from KSDaemon/sails-hook-sequelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "sails-hook-sequelize",
"version": "1.2.0",
"description": "Sails.js hook to use sequelize ORM",
"main": "index.js",
"sails": {
"isHook": true
},
"scripts": {
"lint": "node ./node_modules/.bin/eslint index.js test/*.js test/unit/*.js",
"lint:fix": "node ./node_modules/.bin/eslint --fix index.js test/*.js test/unit/*.js",
"test": "node ./node_modules/.bin/mocha --exit test/overall.test.js",
"cover": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha --exit test/overall.test.js",
"pretest": "cd ./test/fixtures/v0.11-app && npm i --prefix ./ && cd - && cd ./test/fixtures/v0.12-sequelize-waterline-app && npm i --prefix ./ && cd - && cd ./test/fixtures/v1.0-app && npm i --prefix ./ && cd -",
"posttest": "git checkout -- ./test/fixtures/v0.12-sqlite3-app/db/sequelize.sqlite && git checkout -- ./test/fixtures/v0.12-sequelize-waterline-app/db/sequelize.sqlite"
},
"keywords": [
"sails",
"sequelize",
"orm"
],
"author": "Gergely Munkacsy",
"contributors": [
"Konstantin Burkalev",
"Dmitry Demenchuk"
],
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.2",
"decache": "^4.4.0",
"eslint": "^5.6.0",
"istanbul": "^0.4.5",
"json3": "^3.3.2",
"minimatch": "^3.0.4",
"mocha": "^5.2.0",
"pg": "^6.4.0",
"pg-hstore": "^2.3.2",
"sails": "^0.12.14",
"sails-hook-orm": "^1.0.9",
"sails-memory": "^0.10.7",
"should": "^13.2.3",
"sqlite3": "^4.0.2",
"supertest": "^3.3.0"
},
"dependencies": {
"continuation-local-storage": "^3.2.1",
"sequelize": "^4.39.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:KSDaemon/sails-hook-sequelize.git"
},
"bugs": {
"url": "https://github.com/KSDaemon/sails-hook-sequelize/issues"
},
"homepage": "https://github.com/KSDaemon/sails-hook-sequelize"
}