forked from journeyapps/node-sqlcipher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.18 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
{
"name": "@kuromiii/sqlcipher",
"description": "Asynchronous, non-blocking SQLCipher bindings",
"version": "5.3.2",
"homepage": "https://github.com/kuromiii/node-sqlcipher",
"author": {
"name": "JourneyApps",
"url": "https://journeyapps.com/"
},
"binary": {
"module_name": "node_sqlite3",
"module_path": "./lib/binding/napi-v{napi_build_version}-{platform}-{arch}",
"host": "https://github.com/kuromiii/node-sqlcipher/releases/download/",
"remote_path": "v{version}",
"package_name": "napi-v{napi_build_version}-{platform}-{arch}.tar.gz",
"napi_versions": [
3,
6
]
},
"contributors": [
"Konstantin Käfer <[email protected]>",
"Dane Springmeyer <[email protected]>",
"Will White <[email protected]>",
"Orlando Vazquez <[email protected]>",
"Artem Kustikov <[email protected]>",
"Eric Fredricksen <[email protected]>",
"John Wright <[email protected]>",
"Ryan Dahl <[email protected]>",
"Tom MacWright <[email protected]>",
"Carter Thaxton <[email protected]>",
"Audrius Kažukauskas <[email protected]>",
"Johannes Schauer <[email protected]>",
"Nathan Rajlich <[email protected]>",
"AJ ONeal <[email protected]>",
"Mithgol",
"Ben Noordhuis <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/kuromiii/node-sqlcipher.git"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"aws-sdk": "^2.1248.0",
"electron": "^22.0.0",
"electron-mocha": "^12.0.0",
"@electron/rebuild": "^3.2.10",
"eslint": "9.2.0",
"mocha": "^10.1.0",
"node-abi": "^3.28.0",
"node-gyp": "^10.1.0"
},
"scripts": {
"install": "node-pre-gyp install --fallback-to-build",
"pretest": "node test/support/createdb.js",
"test": "mocha -R spec --timeout 480000",
"pack": "node-pre-gyp package"
},
"license": "BSD-3-Clause",
"keywords": [
"sql",
"sqlite",
"sqlite3",
"database"
],
"main": "./lib/sqlite3",
"types": "./lib/sqlite3.d.ts",
"files": [
"binding.gyp",
"deps/",
"lib/*.js",
"lib/*.d.ts",
"src/"
]
}