-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
120 lines (120 loc) · 3.41 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "aleph",
"version": "1.7.0",
"description": "Mediachain client and javascript peer",
"main": "index.js",
"scripts": {
"build-jq": "node scripts/build-jq.js",
"postinstall": "npm run build-jq",
"test": "NODE_ENV=test nyc --require babel-register mocha --recursive './test/**/*_test.js'",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:lcov": "npm run test && nyc report --reporter=lcov",
"build": "mkdirp ./lib && babel --copy-files src -d lib",
"check": "npm run check:style && npm run check:types",
"check:style": "standard",
"check:types": "flow",
"cli": "npm run build >/dev/null && node ./lib/client/cli/index.js",
"prepublish": "npm run build",
"docs": "npm run docs:build && npm run docs:publish && npm run docs:clean",
"docs:build": "./docs/build.sh",
"docs:publish": "node ./docs/publish.js",
"docs:clean": "./docs/clean.sh"
},
"bin": {
"aleph": "./bin/aleph.js",
"mcclient": "./bin/mcclient.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediachain/aleph.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/mediachain/aleph/issues"
},
"homepage": "https://github.com/mediachain/aleph#readme",
"dependencies": {
"ajv": "^4.9.2",
"bin-build": "^2.2.0",
"borc": "^2.0.1",
"byline": "^5.0.0",
"digest-stream": "^2.0.0",
"duplex-child-process": "0.0.5",
"gunzip-maybe": "^1.3.1",
"knex": "^0.12.6",
"levelup": "^1.3.3",
"libp2p-crypto": "^0.8.0",
"libp2p-ping": "^0.3.0",
"libp2p-secio": "^0.6.4",
"libp2p-spdy": "^0.10.1",
"libp2p-swarm": "^0.26.2",
"libp2p-tcp": "^0.9.1",
"libp2p-websockets": "^0.9.1",
"locks": "^0.2.2",
"lodash": "^4.17.1",
"mafmt": "^2.1.5",
"map-stream": "^0.0.6",
"memdown": "^1.2.4",
"mkdirp": "^0.5.1",
"multiaddr": "^2.1.3",
"multihashes": "^0.4.3",
"ndjson": "^1.4.3",
"node-fetch": "^1.6.3",
"peer-book": "^0.3.0",
"peer-id": "^0.8.0",
"peer-info": "^0.8.0",
"protocol-buffers": "^3.2.0",
"pull-abortable": "^4.1.0",
"pull-length-prefixed": "^1.2.0",
"pull-paramap": "^1.2.1",
"pull-promise": "^2.0.0",
"pull-pushable": "^2.0.1",
"pull-stream": "^3.5.0",
"pull-window": "^2.1.4",
"sqlite3": "^3.1.8",
"tar-stream": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.5.2.tgz",
"temp": "^0.8.3",
"thenify-all": "^1.6.0",
"tunnel-ssh": "^4.1.1",
"uuid": "^3.0.1",
"yargs": "^6.3.0"
},
"devDependencies": {
"babel-cli": "^6.22.0",
"babel-eslint": "^7.1.0",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-register": "^6.22.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"eslint-plugin-flowtype": "^2.30.3",
"flow-bin": "^0.41.0",
"gh-pages": "^0.12.0",
"ink-docstrap": "^1.3.0",
"interface-connection": "^0.3.0",
"jsdoc": "^3.4.3",
"jsdoc-babel": "^0.3.0",
"mocha": "^3.2.0",
"mocha-eventually": "^1.1.0",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.0.0",
"standard": "^8.6.0",
"std-mocks": "^1.0.1"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
],
"ignore": [
"/flow-typed/**",
"/docs/**"
]
},
"nyc": {
"sourceMap": false,
"instrument": false
}
}