-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.19 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.19 KB
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
{
"name": "meterify",
"version": "1.4.8",
"description": "A web3 adaptor for Meter RESTful HTTP API.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "tsc -p .",
"lint": "tslint --fix -p .",
"prepare": "rm -rf dist/; npm run build",
"test": "NODE_ENV=test mocha --require ts-node/register/transpile-only --timeout 20000 --recursive --exclude './test/browser/*.ts' './**/*.test.ts'",
"cover": "NODE_ENV=test nyc npm t",
"coverall": "NODE_ENV=test nyc npm t && nyc report --reporter=text-lcov | coveralls",
"test:browser": "TS_NODE_PROJECT=\"test/browser/tsconfig.webpack.json\" webpack --config test/browser/webpack.test.config.ts && open test/browser/index.html"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"test/",
"**/*.d.ts",
"src/types.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"json",
"html",
"text-summary"
],
"all": true
},
"author": "simonzg@dfinlab.com",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^5.2.0",
"@types/node": "^12.7.5",
"@types/webpack": "^4.4.11",
"@types/ws": "^6.0.0",
"chai": "^4.3.6",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^14.1.1",
"repl-x": "^0.1.4",
"rewiremock": "^3.14.3",
"ts-loader": "^5.1.1",
"ts-node": "^8.3.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"web3": "^1.2.11",
"webpack": "^4.44.1",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"eventemitter3": "^3.1.0",
"isomorphic-ws": "^4.0.1",
"@meterio/devkit": "^1.6.5",
"web3-core-subscriptions": "^1.2.11",
"ws": "^6.0.0",
"xhr2": "0.1.4"
},
"peerDependencies": {
"web3": "1.*"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meterio/meterify.git"
},
"keywords": [
"meter",
"web3",
"blockchain",
"smart",
"contract"
],
"bugs": {
"url": "https://github.com/meterio/meterify/issues"
},
"homepage": "https://meterio.github.io/meterify"
}