UNPKG

3.96 kBJSONView Raw
1{
2 "name": "@nomiclabs/buidler",
3 "version": "1.2.0",
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",
35 "coverage": "node ../../node_modules/nyc/bin/nyc.js ../../node_modules/mocha/bin/mocha",
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/uuid": "^3.4.5",
67 "@types/ws": "^7.2.1",
68 "chai": "^4.2.0",
69 "time-require": "^0.1.2"
70 },
71 "dependencies": {
72 "@nomiclabs/ethereumjs-vm": "^4.1.1",
73 "@types/bn.js": "^4.11.5",
74 "@types/lru-cache": "^5.1.0",
75 "abort-controller": "^3.0.0",
76 "ansi-escapes": "^4.3.0",
77 "bip32": "^2.0.3",
78 "bip39": "^3.0.2",
79 "chalk": "^2.4.2",
80 "ci-info": "^2.0.0",
81 "debug": "^4.1.1",
82 "deepmerge": "^2.1.0",
83 "download": "^7.1.0",
84 "enquirer": "^2.3.0",
85 "eth-sig-util": "^2.5.2",
86 "ethereumjs-abi": "^0.6.8",
87 "ethereumjs-account": "^3.0.0",
88 "ethereumjs-block": "^2.2.0",
89 "ethereumjs-common": "^1.3.2",
90 "ethereumjs-tx": "^2.1.1",
91 "ethereumjs-util": "^6.1.0",
92 "find-up": "^2.1.0",
93 "fp-ts": "1.19.3",
94 "fs-extra": "^7.0.1",
95 "glob": "^7.1.3",
96 "io-ts": "1.10.4",
97 "is-installed-globally": "^0.2.0",
98 "lodash": "^4.17.11",
99 "merkle-patricia-tree": "^3.0.0",
100 "mocha": "^5.2.0",
101 "node-fetch": "^2.6.0",
102 "qs": "^6.7.0",
103 "raw-body": "^2.4.1",
104 "semver": "^6.3.0",
105 "slash": "^3.0.0",
106 "solc": "0.5.15",
107 "solidity-parser-antlr": "^0.4.2",
108 "source-map-support": "^0.5.13",
109 "ts-essentials": "^2.0.7",
110 "tsort": "0.0.1",
111 "uuid": "^3.3.2",
112 "ws": "^7.2.1"
113 },
114 "nyc": {
115 "extension": [
116 ".ts"
117 ],
118 "exclude": [
119 "**/*.d.ts",
120 "dev-build",
121 "sample-project",
122 "test",
123 "coverage",
124 ".nyc_output",
125 "*.ts",
126 "*.js",
127 "internal",
128 "builtin-tasks",
129 "build-test"
130 ],
131 "reporter": [
132 "text",
133 "lcovonly"
134 ],
135 "all": true
136 }
137}