-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 2.36 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
{
"name": "prolly-trees",
"version": "0.0.0-dev",
"type": "module",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"build": "npm_config_yes=true npx ipjs@latest build --tests",
"publish": "npm_config_yes=true npx ipjs@latest publish",
"test:node-v12": "mocha test/test-*.js",
"test:watch": "mocha test/test-*.js --watch --parallel",
"test:cjs": "npm run build && mocha dist/cjs/node-test/test-*.js",
"test:node": "hundreds mocha test/test-*.js",
"test:browser": "polendina --cleanup dist/cjs/node-test/test-*.js --webpack-config test/polendina-webpack.config.cjs",
"test": "npm run lint && npm run test:node && npm run test:cjs && npm run test:browser",
"coverage": "c8 --reporter=html mocha test/test-*.js && npm_config_yes=true npx st -d coverage -p 8080",
"coverage:grep": "c8 --reporter=html mocha test/test-*.js -- --grep 'decreasing logic' && npm_config_yes=true npx st -d coverage -p 8080"
},
"keywords": [],
"author": "Mikeal Rogers <mikeal.rogers@gmail.com> (https://www.mikealrogers.com/)",
"license": "(Apache-2.0 AND MIT)",
"description": "Implementation of [peer-to-peer b-trees](https://0fps.net/2020/12/19/peer-to-peer-ordered-search-indexes/) which are [prolly trees](https://www.dolthub.com/blog/2020-04-01-how-dolt-stores-table-data/) as used in dolt and noms.",
"devDependencies": {
"@ipld/dag-cbor": "^2.0.3",
"assert-polyfill": "^0.0.0",
"c8": "^7.3.5",
"hundreds": "^0.0.9",
"mocha": "^8.2.1",
"multiformats": "^4.4.1",
"polendina": "^3.0.0",
"node-polyfill-webpack-plugin": "^1.1.4",
"standard": "^16.0.3"
},
"dependencies": {
"bl": "^4.0.3",
"node-sql-parser": "^3.1.0"
},
"exports": {
"./cache": {
"import": "./src/cache.js"
},
"./cid-set": {
"import": "./src/cid-set.js"
},
"./map": {
"import": "./src/map.js"
},
"./sparse-array": {
"import": "./src/sparse-array.js"
},
"./db-index": {
"import": "./src/db-index.js"
},
"./utils": {
"import": "./src/utils.js"
}
},
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikeal/prolly-trees.git"
},
"bugs": {
"url": "https://github.com/mikeal/prolly-trees/issues"
},
"homepage": "https://github.com/mikeal/prolly-trees#readme"
}