-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.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
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
{
"name": "better-sqlite3-schema",
"version": "3.1.7",
"description": "Migrate (nested and multi-dimensional) json data to/from sqlite database with better-sqlite3-helper",
"keywords": [
"helper",
"schema",
"migrate",
"import",
"export",
"better-sqlite3-helper",
"better-sqlite3",
"sqlite3"
],
"author": "Beeno Tung <aabbcc1241@yahoo.com.hk> (https://beeno-tung.surge.sh)",
"license": "BSD-2-Clause",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "run-s format build mocha",
"clean": "rimraf dist",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"build": "run-s clean tsc mk-package",
"tsc": "tsc -p tsconfig.build.json",
"tsc:watch": "tsc --noEmit --watch",
"mk-package": "mk-package",
"mocha": "ts-mocha test/*.spec.ts",
"prepublishOnly": "run-s mocha build"
},
"directories": {
"test": "test"
},
"files": [
"dist"
],
"dependencies": {
"@beenotung/better-sqlite3-helper": "^4.1.7",
"better-sqlite3": "^11.0.0",
"tslib": "^2.6.3"
},
"devDependencies": {
"@beenotung/tslib": "^22.3.0",
"@types/better-sqlite3": "^7.6.10",
"@types/integer": "^4.0.3",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.2",
"chai": "^4.4.1",
"mk-package": "^1.0.2",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@beenotung/better-sqlite3-helper": "^4.1.4",
"@types/better-sqlite3": "^7.6.3",
"@types/integer": "^4.0.1"
},
"peerDependenciesMeta": {
"@beenotung/better-sqlite3-helper": {
"optional": true
},
"@types/better-sqlite3": {
"optional": true
},
"@types/integer": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/better-sqlite3-schema.git"
},
"bugs": {
"url": "https://github.com/beenotung/better-sqlite3-schema/issues"
},
"homepage": "https://github.com/beenotung/better-sqlite3-schema#readme"
}