UNPKG

4.15 kBJSONView Raw
1{
2 "name": "@nomiclabs/buidler",
3 "version": "1.4.8",
4 "author": "Nomic Labs LLC",
5 "license": "SEE LICENSE IN LICENSE",
6 "homepage": "https://buidler.dev",
7 "repository": "github:nomiclabs/buidler",
8 "main": "internal/lib/buidler-lib.js",
9 "types": "internal/lib/buidler-lib.d.ts",
10 "description": "Buidler is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.",
11 "keywords": [
12 "ethereum",
13 "smart-contracts",
14 "buidler",
15 "blockchain",
16 "dapps",
17 "javascript",
18 "tooling",
19 "task-runner",
20 "solidity"
21 ],
22 "bin": {
23 "buidler": "internal/cli/cli.js",
24 "builder": "internal/cli/cli-with-a-typo.js"
25 },
26 "engines": {
27 "node": ">=8.2.0"
28 },
29 "scripts": {
30 "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",
31 "lint": "npm run lint-src && npm run lint-tests",
32 "lint-tests": "node -r ts-node/register ../../node_modules/tslint/bin/tslint --config tslint.json --project ./tsconfig.json",
33 "lint-src": "node -r ts-node/register ../../node_modules/tslint/bin/tslint --config tslint.json --project src/tsconfig.json",
34 "test": "node ../../node_modules/mocha/bin/mocha --recursive \"test/**/*.ts\"",
35 "coverage": "node ../../node_modules/nyc/bin/nyc.js ../../node_modules/mocha/bin/mocha --recursive \"test/**/*.ts\"",
36 "build": "node ../../node_modules/typescript/bin/tsc --build src",
37 "build-test": "node ../../node_modules/typescript/bin/tsc --build .",
38 "clean": "node ../../node_modules/rimraf/bin.js builtin-tasks internal *.d.ts *.map *.js build-test tsconfig.tsbuildinfo"
39 },
40 "files": [
41 "builtin-tasks/",
42 "internal/",
43 "sample-project/",
44 "src/",
45 "*.d.ts",
46 "*.d.ts.map",
47 "*.js",
48 "*.js.map",
49 "LICENSE",
50 "README.md",
51 "recommended-gitignore.txt",
52 "console.sol"
53 ],
54 "devDependencies": {
55 "@types/chai": "^4.2.0",
56 "@types/ci-info": "^2.0.0",
57 "@types/debug": "^4.1.4",
58 "@types/download": "^6.2.4",
59 "@types/find-up": "^2.1.1",
60 "@types/fs-extra": "^5.1.0",
61 "@types/glob": "^7.1.1",
62 "@types/lodash": "^4.14.123",
63 "@types/node-fetch": "^2.3.7",
64 "@types/qs": "^6.5.3",
65 "@types/semver": "^6.0.2",
66 "@types/sinon": "^7.5.1",
67 "@types/uuid": "^3.4.5",
68 "@types/ws": "^7.2.1",
69 "chai": "^4.2.0",
70 "sinon": "^9.0.0",
71 "time-require": "^0.1.2"
72 },
73 "dependencies": {
74 "@nomiclabs/ethereumjs-vm": "^4.1.1",
75 "@sentry/node": "^5.18.1",
76 "@solidity-parser/parser": "^0.5.2",
77 "@types/bn.js": "^4.11.5",
78 "@types/lru-cache": "^5.1.0",
79 "abort-controller": "^3.0.0",
80 "ansi-escapes": "^4.3.0",
81 "chalk": "^2.4.2",
82 "chokidar": "^3.4.0",
83 "ci-info": "^2.0.0",
84 "debug": "^4.1.1",
85 "deepmerge": "^2.1.0",
86 "download": "^7.1.0",
87 "enquirer": "^2.3.0",
88 "env-paths": "^2.2.0",
89 "eth-sig-util": "^2.5.2",
90 "ethereum-cryptography": "^0.1.2",
91 "ethereumjs-abi": "^0.6.8",
92 "ethereumjs-account": "^3.0.0",
93 "ethereumjs-block": "^2.2.0",
94 "ethereumjs-common": "^1.3.2",
95 "ethereumjs-tx": "^2.1.1",
96 "ethereumjs-util": "^6.1.0",
97 "find-up": "^2.1.0",
98 "fp-ts": "1.19.3",
99 "fs-extra": "^7.0.1",
100 "glob": "^7.1.3",
101 "io-ts": "1.10.4",
102 "is-installed-globally": "^0.2.0",
103 "lodash": "^4.17.11",
104 "merkle-patricia-tree": "^3.0.0",
105 "mocha": "^7.1.2",
106 "node-fetch": "^2.6.0",
107 "qs": "^6.7.0",
108 "raw-body": "^2.4.1",
109 "semver": "^6.3.0",
110 "slash": "^3.0.0",
111 "solc": "0.6.8",
112 "source-map-support": "^0.5.13",
113 "ts-essentials": "^2.0.7",
114 "tsort": "0.0.1",
115 "uuid": "^3.3.2",
116 "ws": "^7.2.1"
117 },
118 "nyc": {
119 "extension": [
120 ".ts"
121 ],
122 "exclude": [
123 "**/*.d.ts",
124 "dev-build",
125 "sample-project",
126 "test",
127 "coverage",
128 ".nyc_output",
129 "*.ts",
130 "*.js",
131 "internal",
132 "builtin-tasks",
133 "build-test"
134 ],
135 "reporter": [
136 "text",
137 "lcovonly"
138 ],
139 "all": true
140 }
141}