-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.82 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
{
"name": "plumtree",
"version": "0.1.2",
"description": "A javascript implementation of plumtree",
"author": "Antoine Toulme",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tmio/plumtree/issues"
},
"homepage": "https://github.com/tmio/plumtree#readme",
"main": "src/state.ts",
"scripts": {
"build": "babel src -x .ts -d lib --source-maps",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"lint-fix": "eslint --ext .ts src/ --fix",
"pretest": "yarn run check-types",
"test:unit": "nyc -r lcov -e .ts mocha -r ./.babel-register 'test/**/*.test.ts' && nyc report",
"test": "yarn test:unit",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com:tmio/plumtree.git"
},
"keywords": [
"p2p",
"gossip"
],
"dependencies": {
"@types/lru-cache": "^5.1.0",
"buffer": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0-beta.55",
"@polkadot/ts": "^0.1.56",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.17",
"@types/sinon": "^7.0.11",
"@typescript-eslint/eslint-plugin": "^1.3.0",
"@typescript-eslint/parser": "^1.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.1.0",
"eslint": "^5.14.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"sinon": "^7.2.7",
"supertest": "^4.0.2",
"ts-node": "^7.0.1",
"typescript": "^3.2.1"
}
}