-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
57 lines (57 loc) · 1.67 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
{
"name": "hobbits-ts",
"version": "0.1.0",
"description": "A TypeScript implementation of the Hobbits Ethereum Wire Protocol.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel src -x .ts -d lib --sourceMap",
"check-types": "tsc --noEmit",
"lint": "eslint --ext .ts src/",
"lint-fix": "eslint --ext .ts src/ --fix",
"pretest": "npm run check-types",
"test": "nyc -r lcov -e .ts -x \"*.test.ts\" mocha -r ./.babel-register \"tests/**/*.test.ts\" --exit && nyc report",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChainSafeSystems/hobbits-ts.git"
},
"keywords": [
"Ethereum",
"Wire Protocol",
"Networking",
"Testing",
"Future"
],
"author": "ChainSafe System",
"license": "Apache 2.0 License",
"bugs": {
"url": "https://github.com/ChainSafeSystems/hobbits-ts/issues"
},
"homepage": "https://github.com/ChainSafeSystems/hobbits-ts#readme",
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.0",
"@babel/runtime": "^7.4.2",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.11.4",
"@typescript-eslint/eslint-plugin": "^1.7.0",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.16.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"ts-node": "^8.0.3",
"typescript": "^3.4.1"
},
"dependencies": {}
}