-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.49 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
{
"name": "simple-sqlite-promise",
"version": "0.1.7",
"description": "A simple sqlite3 wrap, using ES6 promise, written in Typescript。 简单地用promise包装了一下sqlite3。用typescript写成",
"main": "./bin/Database.js",
"types": "./bin/Database.d.ts",
"scripts": {
"test": "mocha --require ts-node/register ./test/index.test.ts",
"compile": "gulp compile",
"lint": "eslint --max-warnings 0 src/**/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wu-jingtao/simple-sqlite-promise.git"
},
"keywords": [
"sqlite3",
"promise",
"wrap",
"typescript"
],
"author": "wujingtao",
"license": "MIT",
"bugs": {
"url": "https://github.com/wu-jingtao/simple-sqlite-promise/issues"
},
"homepage": "https://github.com/wu-jingtao/simple-sqlite-promise#readme",
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.13",
"@types/sqlite3": "^3.1.6",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"eslint": "^7.2.0",
"eslint-config-sufu": "^2.0.4",
"expect.js": "^0.3.1",
"gulp": "^4.0.2",
"gulp-typescript": "^5.0.1",
"mocha": "^8.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"dependencies": {
"sqlite3": "^4.2.0"
}
}