forked from Frando/corestore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.65 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@frando/corestore",
"version": "1.2.2",
"description": "Yet another hypercore manager, but this time with permissioned access to 'cores",
"main": "node.js",
"browser": "browser.js",
"scripts": {
"test": "standard && tape test/*.js",
"example": "cd example; npm install && npm run dev",
"watch": "watchify browser-example.js --debug -o bundle.js -v",
"dss": "./node_modules/.bin/discovery-swarm-web",
"server": "http-server .",
"server2": "http-server -p 8081 .",
"dev": "run-p watch dss server server2",
"build": "browserify browser.js -p tinyify > bundle.js"
},
"browserify": {},
"browserify2": {
"transform": [
"babelify"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andrewosh/corestore.git"
},
"keywords": [
"hypercore",
"storage",
"permissions"
],
"author": "Andrew Osheroff <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/andrewosh/corestore/issues"
},
"homepage": "https://github.com/andrewosh/corestore#readme",
"dependencies": {
"acorn": "^6.2.0",
"choo": "^6.13.1",
"choo-devtools": "^3.0.0",
"codecs": "^2.0.0",
"dat-encoding": "^5.0.1",
"dat-swarm-defaults": "^1.0.1",
"debug": "^3.1.0",
"discovery-swarm": "^5.1.1",
"discovery-swarm-web": "^1.0.5",
"fs-extra": "^6.0.1",
"hypercore": "^6.25.0",
"hypercore-protocol": "^6.6.4",
"hyperdrive": "9.14.3",
"identify-filetype": "^1.0.0",
"level": "^4.0.0",
"level-browserify": "^2.0.0",
"lodash": "^4.17.14",
"lru": "^3.1.0",
"mime": "^2.4.4",
"mutexify": "^1.2.0",
"nanohtml": "^1.6.3",
"random-access-file": "^2.1.0",
"random-access-web": "^2.0.1",
"randombytes": "^2.1.0",
"rehype-stringify": "^6.0.0",
"remark": "^10.0.1",
"remark-html": "^9.0.1",
"remark-parse": "^6.0.3",
"remark-preset-lint-recommended": "^3.0.3",
"remark-rehype": "^4.0.1",
"sublevel-prefixer": "^1.0.0",
"subleveldown": "^3.0.1",
"typescript": "3.3.3333",
"unified": "^8.3.1",
"unified-stream": "^1.0.5",
"vfile-reporter": "^6.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"encoding-down": "^6.0.2",
"http-server": "^0.11.1",
"level-mem": "^3.0.1",
"levelup": "^4.0.1",
"memdown": "^4.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.5",
"random-access-memory": "^3.1.1",
"standard": "^11.0.1",
"tape": "^4.9.0",
"tinyify": "^2.5.0",
"watchify": "^3.11.1"
}
}