-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
46 lines (46 loc) · 998 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
43
44
45
46
{
"name": "koa-orm",
"version": "3.2.1",
"description": "koa orm using sequelize & sk2",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "nyc mocha --exit -R spec",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d-band/koa-orm.git"
},
"keywords": [
"koa",
"orm",
"sequelize",
"sk2",
"knex"
],
"author": "d-band",
"license": "MIT",
"bugs": {
"url": "https://github.com/d-band/koa-orm/issues"
},
"homepage": "https://github.com/d-band/koa-orm#readme",
"dependencies": {
"sequelize": "^6.3.5",
"sk2": "^1.1.2"
},
"devDependencies": {
"@types/koa": "^2.11.6",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"koa": "^2.13.0",
"mocha": "^8.2.1",
"mysql2": "^2.2.5",
"nyc": "^15.1.0",
"supertest": "^6.0.1"
},
"engines": {
"node": ">=10.0.0"
}
}