-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.44 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
{
"name": "entrystore",
"version": "0.0.0",
"engines": {
"node": ">=10.0"
},
"description": "A universal entry store",
"keywords": [
"adapter",
"connector",
"database",
"entry",
"interface",
"record",
"store"
],
"homepage": "https://github.com/alvis/entrystore#readme",
"bugs": {
"url": "https://github.com/alvis/entrystore/issues"
},
"license": "MIT",
"author": "Alvis HT Tang <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "run build",
"coverage": "run coverage",
"lint": "run lint",
"prepare": "presetter bootstrap && run prepare",
"prepublishOnly": "run prepublishOnly",
"release": "run release --",
"test": "run test --",
"watch": "run watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/entrystore.git"
},
"devDependencies": {
"@types/async": "3.x",
"@types/debug": "4.x",
"@types/fs-extra": "9.x",
"@types/glob": "7.x",
"@types/lodash": "4.x",
"@types/sqlite3": "3.x",
"@types/tmp": "0.2",
"presetter": "1.x",
"presetter-preset": "1.x",
"tmp": "0.2"
},
"dependencies": {
"async": "3.x",
"csv-parse": "4.x",
"csv-stringify": "5.x",
"debug": "4.x",
"fs-extra": "9.x",
"glob": "7.x",
"jsondiffpatch": "0.4",
"lodash": "4.x",
"reflect-metadata": "0.1",
"sqlite": "4.x",
"sqlite3": "5.x"
}
}