forked from unshiftio/liferaft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
60
61
62
{
"name": "liferaft",
"version": "1.0.0",
"description": "Consensus protocol based on raft, it will one day save your live.",
"main": "index.js",
"browser": "./lib/",
"scripts": {
"test": "npm run test-memdown && npm run test-leveldown",
"test-leveldown": "ADAPTER=leveldown mocha test/**.js",
"test-memdown": "ADAPTER=memdown mocha test/**.js",
"test-travis": "nyc --reporter=html --reporter=text npm test",
"prepublish": "npm run build",
"build": "babel ./index.js ./log.js -d ./lib"
},
"repository": {
"type": "git",
"url": "https://github.com/unshiftio/liferaft"
},
"keywords": [
"raft",
"liferaft",
"lifeboat"
],
"author": "Arnout Kazemier",
"license": "MIT",
"bugs": {
"url": "https://github.com/unshiftio/liferaft/issues"
},
"homepage": "https://github.com/unshiftio/liferaft",
"dependencies": {
"emits": "3.0.x",
"encoding-down": "^3.0.1",
"eventemitter3": "2.0.x",
"extendible": "0.1.x",
"immediate": "3.2.x",
"leveldown": "5.6.0",
"levelup": "4.4.0",
"millisecond": "0.1.x",
"modification": "1.0.x",
"one-time": "0.0.x",
"tick-tock": "1.0.x"
},
"devDependencies": {
"@babel/cli": "^7.0.0-beta.38",
"@babel/core": "^7.0.0-beta.38",
"@babel/preset-env": "^7.0.0-beta.38",
"@babel/register": "^7.0.0-beta.38",
"assume": "1.5.x",
"diagnostics": "1.1.x",
"memdown": "^1.4.1",
"mkdirp": "^0.5.1",
"mocha": "5.0.x",
"nyc": "^11.3.0",
"pre-commit": "1.2.x",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
"@babel/preset-env"
]
}
}