-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 944 Bytes
/
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
{
"name": "@onebeyond/systemic-knex",
"version": "5.0.0",
"description": "A systemic Knex component",
"main": "index.js",
"scripts": {
"test": "jest --verbose ./**/*.test.js",
"test:coverage": "jest --verbose ./**/*.test.js --coverage",
"test:watch": "jest --verbose ./**/*.test.js --watchAll",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onebeyond/systemic-knex.git"
},
"keywords": [
"systemic",
"knex"
],
"author": "One Beyond",
"license": "MIT",
"bugs": {
"url": "https://github.com/onebeyond/systemic-knex/issues"
},
"homepage": "https://github.com/onebeyond/systemic-knex#readme",
"dependencies": {
"knex": "3.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"standard": {
"env": [
"jest"
]
},
"devDependencies": {
"jest": "28.1.3",
"standard": "16.0.4"
}
}