-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
78 lines (78 loc) · 2 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
70
71
72
73
74
75
76
77
78
{
"name": "sails-hook-sequelize",
"version": "2.0.1",
"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_ENV=test nyc mocha --exit test/overall.test.js",
"cover": "nyc report",
"pretest": "cd ./test/fixtures/v0.11-app && npm i --prefix ./ && cd - && cd ./test/fixtures/v0.12-app && npm i --prefix ./ && cd -",
"posttest": "git checkout -- test/fixtures/v1.x-sqlite3-app/db/sequelize.sqlite && git checkout -- test/fixtures/v1.x-sequelize-waterline-app/db/sequelize.sqlite"
},
"engines": {
"node": ">=12.0.0"
},
"nyc": {
"include": [
"index.js"
],
"report-dir": "./coverage",
"temp-dir": "./coverage",
"reporter": [
"lcov",
"text-summary",
"html"
]
},
"keywords": [
"sails",
"sequelize",
"orm"
],
"author": "Gergely Munkacsy",
"contributors": [
"Konstantin Burkalev",
"Dmitry Demenchuk",
"Damien Marble",
"Abel M. Osorio"
],
"license": "MIT",
"devDependencies": {
"coveralls": "^3.1.1",
"decache": "^4.6.2",
"eslint": "^8.15.0",
"istanbul": "^0.4.5",
"json3": "^3.3.3",
"minimatch": "^5.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pg": "^8.11.1",
"pg-hstore": "^2.3.4",
"sails": "^1.5.6",
"sails-hook-orm": "^4.0.1",
"sails-memory": "^0.10.7",
"should": "^13.2.3",
"sqlite3": "^5.1.6",
"supertest": "^6.3.3"
},
"dependencies": {
"cls-hooked": "^4.2.2",
"sequelize": "^6.32.1"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "[email protected]:KSDaemon/sails-hook-sequelize.git"
},
"bugs": {
"url": "https://github.com/KSDaemon/sails-hook-sequelize/issues"
},
"homepage": "https://github.com/KSDaemon/sails-hook-sequelize"
}