-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "hemera-sql-store",
"version": "7.0.0",
"description": "Generic SQL client for Hemera",
"main": "index.js",
"repository": {
"url": "git@github.com:hemerajs/hemera-sql-store.git",
"type": "git"
},
"scripts": {
"lint": "eslint ./**/*.js",
"test": "nyc mocha -t 5000 --exit ./test/**/*.js",
"coverage": "npm run test && nyc report --reporter=html",
"patch": "np patch --yolo",
"minor": "np minor --yolo",
"major": "np major --yolo"
},
"keywords": [
"hemera",
"sql",
"mariadb",
"mysql"
],
"author": "Dustin Deus (https://github.com/StarpTech)",
"license": "MIT",
"dependencies": {
"hemera-plugin": "1.3.x",
"hemera-store": "1.1.x",
"knex": "0.14.x",
"hemera-joi": "5.2.x"
},
"devDependencies": {
"code": "^3.0.2",
"eslint": "^4.19.1",
"eslint-config-hemera": "0.0.6",
"hemera-testsuite": "^4.0.1",
"mocha": "^5.0.5",
"nats": "^0.8.4",
"nats-hemera": "^5.3.0",
"np": "^2.20.1",
"nuid": "^0.6.14",
"nyc": "^11.6.0",
"prettier": "^1.11.1",
"mysql": "^2.15.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2"
}
}