-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 2.01 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "trilogy",
"version": "2.0.5",
"description": "TypeScript SQLite layer with support for both native C++ & pure JavaScript drivers.",
"license": "MIT",
"author": "Bo Lingen <lingenbw@gmail.com> (https://github.com/citycide)",
"repository": "https://github.com/citycide/trilogy",
"homepage": "https://trilogy.js.org",
"bugs": "https://github.com/citycide/trilogy/issues",
"keywords": [
"knex",
"model",
"schema",
"sqlite",
"sql.js",
"storage",
"database",
"electron",
"mongoose",
"document",
"typescript"
],
"engines": {
"node": ">=8.10"
},
"files": [
"dist",
"es"
],
"main": "dist/index.js",
"module": "es/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"prebuild": "npm run lint && rimraf dist es",
"build": "npm run build:dist && npm run build:es",
"build:dist": "tsc -d",
"build:es": "tsc -m esnext --outDir es",
"test": "ava",
"lint": "tslint -p tsconfig.json \"src/**/*.ts\" \"test/**/*.ts\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"changelog": "changelog",
"prepublishOnly": "npm test && npm run build"
},
"dependencies": {
"generic-pool": "^3.7.1",
"knex": "^0.20.1",
"runtypes": "^4.0.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@citycide/changelog": "^1.1.0",
"@types/generic-pool": "^3.1.9",
"@types/node": "^8.10.49",
"@types/rimraf": "^2.0.3",
"@types/sql.js": "^1.4.2",
"@vuepress/plugin-back-to-top": "^1.2.0",
"ava": "^2.4.0",
"cpy-cli": "^2.0.0",
"rimraf": "^3.0.0",
"sql.js": "^1.5.0",
"sqlite3": "^5.0.2",
"ts-node": "^8.4.1",
"tslint": "^5.20.1",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.7.2",
"vuepress": "^1.2.0"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"files": [
"tests/**/*.ts"
],
"helpers": [
"tests/helpers/**/*.ts"
],
"require": [
"ts-node/register"
]
}
}