This repository was archived by the owner on Oct 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 KB
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
{
"name": "lseqtree",
"version": "1.0.0",
"author": "Chat-Wane <grumpy.chat.wane@gmail.com>",
"description": "A data structure for distributed arrays using the LSeq allocation strategy.",
"main": "./lib/lseqtree.js",
"repository": {
"type": "git",
"url": "https://github.com/chat-wane/LSEQTree"
},
"keywords": [
"distributed structure",
"CRDT",
"LSeq",
"tree",
"array"
],
"dependencies": {
"BigInt": "^5.4.5",
"lodash": "^4.17.4"
},
"devDependencies": {
"xtend": "^4.0.1",
"jsonparse": "^1.3.1",
"expect.js": "^0.3.1",
"mocha": "^3.4.2",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"esdoc": "^0.5.2",
"esdoc-node": "^1.0.2"
},
"bundledDependencies": [
"BigInt",
"lodash"
],
"scripts": {
"esdoc": "esdoc && npm run",
"test": "mocha ./test/test*",
"all": "npm run debug && npm run build && npm run esdoc && npm run test",
"debug": "browserify -r ./lib/lseqtree.js:lseqtree -t [ babelify --presets [ es2015 ] ] --debug > build/lseqtree.bundle.debug.js",
"build": "browserify -r ./lib/lseqtree.js:lseqtree -t [ babelify --presets [ es2015 ] ] > build/lseqtree.bundle.js"
},
"license": "MIT"
}