-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
59 lines (59 loc) · 1.59 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
{
"name": "ipfs-level",
"version": "1.2.2",
"description": "Leveldown over IPFS",
"main": "src/index.js",
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run compile:tests && npm run test:browser",
"test:browser": "aegir-test browser --dom",
"test:node": "mocha test/leveldown.js --timeout=20000 && mocha test/iterator.js --timeout=20000 && mocha test/sync.js --timeout=20000",
"compile:tests": "browserify test/abstract-leveldown.js -o test/abstract-leveldown-generated.spec.js --debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/ipfs-level.git"
},
"keywords": [
"ipfs",
"leveldb",
"leveldown",
"level",
"p2p"
],
"author": "Pedro Teixeira <i@ipfs-shipyard.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-level/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-level#readme",
"devDependencies": {
"aegir": "^11.0.2",
"browserify": "^14.4.0",
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"memdown": "^1.2.4",
"mocha": "^3.4.1",
"rimraf": "^2.6.1",
"standard": "^10.0.2",
"tape": "^4.6.3"
},
"dependencies": {
"abstract-leveldown": "^2.6.1",
"async": "^2.4.1",
"debug": "^2.6.8",
"deep-assign": "^2.0.0",
"ipfs": "^0.24.0",
"lodash.clonedeep": "^4.5.0",
"lodash.uniq": "^4.5.0",
"vectorclock": "0.0.0"
},
"browser": {
"./test/utils/create-repo-node.js": "./test/utils/create-repo-browser.js"
},
"standard": {
"ignore": [
"test/*-generated.*.js"
]
}
}