-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 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
{
"name": "abase-db",
"version": "0.6.0",
"description": "A little experiment in defining models in Joi and creating PostgreSQL Tables",
"main": "lib/",
"devDependencies": {
"goodparts": "^1.1.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.1.3",
"tape": "^4.6.2",
"hapi": "^15.1.1"
},
"dependencies": {
"aguid": "^1.0.4",
"env2": "^2.1.1",
"hoek": "^4.1.0",
"joi": "^9.0.4",
"pg": "^6.1.0"
},
"scripts": {
"test": "tape './test/**/*.test.js'",
"lint": "node_modules/.bin/goodparts .",
"lint:fix": "node_modules/.bin/goodparts . --fix",
"cover": "node_modules/.bin/istanbul cover node_modules/.bin/tape './test/*.test.js'",
"check-coverage": "node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
"example": "node example/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/joi-postgresql.git"
},
"author": "@eliascodes && @jrans",
"license": "ISC",
"bugs": {
"url": "https://github.com/dwyl/joi-postgresql/issues"
},
"homepage": "https://github.com/dwyl/joi-postgresql#readme"
}