UNPKG

1.67 kBJSONView Raw
1{
2 "name": "@nomiclabs/buidler-web3",
3 "version": "1.3.4",
4 "author": "Nomic Labs LLC",
5 "license": "MIT",
6 "homepage": "https://github.com/nomiclabs/buidler/tree/master/packages/buidler-web3",
7 "repository": "github:nomiclabs/buidler",
8 "main": "dist/index.js",
9 "types": "dist/index.d.ts",
10 "description": "Buidler plugin for using Web3 1.x",
11 "keywords": [
12 "ethereum",
13 "smart-contracts",
14 "buidler",
15 "buidler-plugin",
16 "web3",
17 "web3.js"
18 ],
19 "scripts": {
20 "lint:fix": "node ../../node_modules/prettier/bin-prettier.js --write \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\" && npm run lint-src -- --fix && npm run lint-tests -- --fix",
21 "lint": "npm run lint-src && npm run lint-tests",
22 "lint-tests": "node ../../node_modules/tslint/bin/tslint --config tslint.json --project ./tsconfig.json",
23 "lint-src": "node ../../node_modules/tslint/bin/tslint --config tslint.json --project src/tsconfig.json",
24 "test": "node ../../node_modules/mocha/bin/mocha --recursive \"test/**/*.ts\" --recursive \"web3-lazy-object-tests/*.js\" --exit ",
25 "build": "node ../../node_modules/typescript/bin/tsc --build src",
26 "build-test": "node ../../node_modules/typescript/bin/tsc --build .",
27 "clean": "node ../../node_modules/rimraf/bin.js dist build-test"
28 },
29 "files": [
30 "dist/",
31 "src/",
32 "LICENSE",
33 "README.md"
34 ],
35 "devDependencies": {
36 "@nomiclabs/buidler": "^1.3.3",
37 "@types/chai": "^4.2.0",
38 "chai": "^4.2.0",
39 "web3": "^1.0.0-beta.36"
40 },
41 "peerDependencies": {
42 "@nomiclabs/buidler": "^1.3.3",
43 "web3": "^1.0.0-beta.36"
44 },
45 "dependencies": {
46 "@types/bignumber.js": "^5.0.0"
47 }
48}