forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.74 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
{
"name": "web3",
"namespace": "ethereum",
"version": "1.0.0-beta.46",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"main": "./packages/web3/src/index.js",
"directories": {
"doc": "./doc",
"test": "./test"
},
"scripts": {
"clean": "lerna clean",
"link": "lerna link",
"bootstrap": "lerna bootstrap",
"install:all": "lerna add",
"remove:all": "lerna exec npm uninstall",
"publish": "npm run clean && npm run bootstrap && npm run travis && lerna publish",
"build": "lerna run build",
"test": "lerna run test",
"test:coverage": "lerna run test -- -- --coverage && istanbul-combine -d coverage -r lcov -r html ./packages/**/coverage-final.json",
"dtslint": "lerna run dtslint",
"docs": "cd docs; make html;",
"lint": "eslint --cache --fix .",
"format": "prettier --config ./.prettierrc --write ./packages/**/*.js",
"travis": "npm run lint && npm run build && npm run test:coverage && npm run dtslint",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/ethereum/web3.js.git"
},
"homepage": "https://github.com/ethereum/web3.js",
"bugs": {
"url": "https://github.com/ethereum/web3.js/issues"
},
"keywords": [
"Ethereum",
"JavaScript",
"API"
],
"author": "Ethereum Foundation",
"authors": [
{
"name": "Samuel Furter",
"email": "[email protected]",
"homepage": "https://github.com/nivida"
},
{
"name": "Fabian Vogelsteller",
"email": "[email protected]",
"homepage": "https://github.com/frozeman"
},
{
"name": "Marek Kotewicz",
"email": "[email protected]",
"url": "https://github.com/debris"
},
{
"name": "Marian Oancea",
"url": "https://github.com/cubedro"
},
{
"name": "Gav Wood",
"email": "[email protected]",
"homepage": "http://gavwood.com"
},
{
"name": "Jeffery Wilcke",
"email": "[email protected]",
"url": "https://github.com/obscuren"
}
],
"devDependencies": {
"parsimmon": "^1.12.0",
"@babel/core": "^7.1.5",
"@babel/runtime": "^7.1.5",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"@types/bn.js": "^4.11.3",
"@types/node": "^10.12.12",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^6.0.1",
"istanbul-combine": "^0.3.0",
"jest": "^23.6.0",
"lerna": "^2.5.1",
"prettier": "1.14.3",
"regenerator-runtime": "^0.13.1",
"rollup": "^0.67.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-cleanup": "^3.0.0",
"rollup-plugin-json": "^3.1.0",
"typescript": "^3.2.2"
}
}