-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.26 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
{
"name": "knex-log",
"description": "Implementation of a log using knex.",
"version": "2.2.1",
"author": "Tim Allen <[email protected]>",
"license": "BSD",
"main": "index.js",
"scripts": {
"coverage": "c8 npm test",
"pretest": "semistandard --env mocha",
"test": "tape test/*.js",
"watch": "mocha --recursive --watch test",
"docs": "jsdoc2md index.js"
},
"homepage": "https://github.com/noblesamurai/knex-log",
"repository": {
"type": "git",
"url": "git://github.com/noblesamurai/knex-log.git"
},
"bugs": {
"url": "https://github.com/noblesamurai/knex-log/issues"
},
"engines": {
"node": "^8 || ^10 || ^12",
"npm": "6.x"
},
"dependencies": {
"c8": "^7.7.3",
"through2-map": "^3.0.0"
},
"devDependencies": {
"abstract-log": "^3.0.4-0",
"jsdoc-to-markdown": "^6.0.1",
"knex": "^0.21.5",
"nyc": "^10.1.2",
"pg": "^6.2.3",
"pg-query-stream": "^1.0.0",
"semistandard": "^14.2.3",
"sqlite3": "^4.2.0",
"tape": "^4.6.3",
"tape-promise": "^2.0.1"
},
"keywords": [],
"c8": {
"all": true,
"include": [
"index.js"
],
"exclude": [
".github",
"node_modules",
"coverage"
],
"reporter": [
"lcov",
"text"
]
}
}