-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 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
{
"name": "agenda-db-sequelize",
"version": "0.1.1",
"description": "Sequelize adapter for Agenda",
"main": "index.js",
"scripts": {
"test": "mocha -w --reporter spec",
"test-mysql": "cross-env DIALECT=mysql npm run test",
"test-postgres": "cross-env DIALECT=postgres npm run test",
"test-sqlite": "cross-env DIALECT=sqlite npm run test",
"test-docker": "env-cmd ./test/config/.docker.env npm run test",
"test-docker-mysql": "cross-env DIALECT=mysql npm run test-docker",
"test-docker-postgres": "cross-env DIALECT=postgres npm run test-docker"
},
"repository": {
"type": "git",
"url": "git://github.com/advancedcsg-open/agenda-db-sequelize.git"
},
"keywords": [
"agenda",
"mysql",
"postgresql",
"sqlite",
"sequelize",
"database",
"data",
"datastore",
"query",
"db"
],
"author": "C45tr0",
"license": "MIT",
"bugs": {
"url": "https://github.com/advancedcsg-open/agenda-db-sequelize/issues"
},
"homepage": "https://github.com/advancedcsg-open/agenda-db-sequelize#readme",
"dependencies": {
"agenda": "github:paulmowat/agenda#db-adapters",
"env-cmd": "^5.1.0",
"pg": "7.4.3",
"sequelize": "5.15.1"
},
"devDependencies": {
"coveralls": "^2.11.16",
"cross-env": "^5.2.1",
"expect.js": "^0.3.1",
"mocha": "^2.5.3",
"mocha-lcov-reporter": "0.0.2",
"mysql2": "^1.7.0",
"q": "^1.5.1",
"sqlite3": "^4.1.0"
},
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
}