-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 815 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 815 Bytes
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": "active-knex",
"description": "Adding ActiveRecord-esque functionality to knex",
"version": "0.14.0",
"license": "MIT",
"author": "Sam Duvall <https://github.com/SamDuvall>",
"keywords": [
"knex",
"active",
"mysql"
],
"main": "index.js",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git@github.com:SamDuvall/active-knex.git"
},
"dependencies": {
"knex": "^0.19.0",
"lodash": "^4.17.14",
"mysql": "^2.17.1",
"underscore": "^1.9.1",
"underscore.string": "^3.3.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^6.1.4",
"rosie": "^2.0.1",
"standard": "^13.0.2"
},
"scripts": {
"lint": "standard -v",
"test": "npm run lint && npm run test:code",
"test:code": "mocha"
}
}