forked from web3/web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.81 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.49",
"description": "Ethereum JavaScript API wrapper repository",
"license": "LGPL-3.0",
"main": "./packages/web3/src/index.js",
"directories": {
"doc": "./doc"
},
"scripts": {
"clean": "lerna clean",
"link": "lerna link",
"bootstrap": "lerna bootstrap",
"install:all": "lerna add",
"remove:all": "lerna exec npm uninstall",
"install:dev:all": "lerna exec npm install --save-dev",
"publish": "npm run clean && npm run bootstrap && npm run travis && lerna publish --skip-git",
"build": "lerna run build",
"test": "lerna run test",
"test:coverage": "lerna run test -- --coverage && npm run istanbulCombine",
"istanbulCombine": "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": "samuel@ethereum.org",
"homepage": "https://github.com/nivida"
},
{
"name": "Fabian Vogelsteller",
"email": "fabian@ethereum.org",
"homepage": "https://github.com/frozeman"
},
{
"name": "Marek Kotewicz",
"email": "marek@parity.io",
"url": "https://github.com/debris"
},
{
"name": "Marian Oancea",
"url": "https://github.com/cubedro"
},
{
"name": "Gav Wood",
"email": "g@parity.io",
"homepage": "http://gavwood.com"
},
{
"name": "Jeffery Wilcke",
"email": "jeffrey.wilcke@ethereum.org",
"url": "https://github.com/obscuren"
}
],
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"@types/bn.js": "^4.11.4",
"@types/node": "^10.12.30",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.3",
"eslint": "^5.15.1",
"eslint-config-prettier": "^3.6.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^21.27.2",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^3.0.1",
"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": "^3.13.1",
"prettier": "1.14.3",
"regenerator-runtime": "^0.13.1",
"rollup": "^0.67.4",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-json": "^3.1.0",
"typescript": "^3.3.3333"
}
}