forked from LiskArchive/lisk-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.79 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
{
"name": "@liskhq/lisk-db",
"version": "0.3.7",
"description": "A database access implementation according to the Lisk protocol",
"author": "Lisk Foundation <[email protected]>, lightcurve GmbH <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"lisk",
"blockchain"
],
"homepage": "https://github.com/LiskHQ/lisk-db/tree/main#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/LiskHQ/lisk-db.git"
},
"bugs": {
"url": "https://github.com/LiskHQ/lisk-db/issues"
},
"engines": {
"node": ">=12.13.0",
"npm": ">=6.12.0"
},
"main": "main.js",
"types": "types.d.ts",
"scripts": {
"prebuild": "rimraf ./bin-package/index.node",
"build": "cargo-cp-artifact -nc ./bin-package/index.node -- cargo rustc --lib --message-format=json-render-diagnostics",
"build-debug": "npm run build -- -- -D warnings",
"build-release": "npm run build -- --release -- -D warnings",
"test": "npm run test:node; npm run test:rust",
"clean": "cargo clean && rm -rf bin-package && rm -rf build",
"test:node": "jest",
"test:rust": "cargo test",
"rust:fmt": "cargo fmt --all -- --check",
"rust:clippy": "cargo clippy --all-targets --all-features -- -D warnings",
"docs": "cargo doc --no-deps"
},
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.9",
"@types/node": "^16 || ^18",
"cargo-cp-artifact": "^0.1",
"shelljs": "^0.8.5"
},
"devDependencies": {
"bunyan": "^1.8.15",
"jest": "^27.5.1",
"rimraf": "^3.0.2",
"sodium-native": "^3.3.0"
},
"binary": {
"module_name": "index",
"module_path": "./bin-package",
"host": "https://js.lisk.com/lisk-db",
"package_name": "{module_name}-v{version}-{node_abi}-{platform}-{arch}-{libc}.tar.gz",
"remote_path": "{version}"
}
}