-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "think-model-sqlite",
"version": "1.3.2",
"description": "SQLite adapter for ThinkJS 3.x",
"scripts": {
"test": "npm run eslint && npm run test-cov",
"test-cov": "nyc ava test/ && nyc report --reporter=html",
"eslint": "eslint ./lib index.js",
"prepublish": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinkjs/think-model-sqlite.git"
},
"keywords": [
"thinkjs",
"orm",
"mysql",
"adapter",
"model"
],
"author": "lizheming",
"license": "MIT",
"bugs": {
"url": "https://github.com/thinkjs/think-model-sqlite/issues"
},
"homepage": "https://github.com/thinkjs/think-model-sqlite#readme",
"dependencies": {
"generic-pool": "^3.1.7",
"sqlite3": "^5.1.4",
"think-debounce": "^1.0.3",
"think-helper": "^1.1.3",
"think-instance": "^1.0.2",
"think-model-abstract": "^1.6.5"
},
"devDependencies": {
"ava": "^0.19.1",
"eslint": "^4.2.0",
"eslint-config-think": "^1.0.1",
"muk": "^0.5.3",
"nyc": "^10.3.0"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}