forked from celo-org/celo-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 840 Bytes
/
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
{
"name": "@celo/dev-utils",
"version": "0.0.1-dev",
"description": "util package for celo packages that should only be a devDependency",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Celo",
"license": "Apache-2.0",
"homepage": "https://github.com/celo-org/celo-monorepo/tree/master/packages/dev-utils",
"repository": "https://github.com/celo-org/celo-monorepo/tree/master/packages/dev-utils",
"keywords": [
"celo"
],
"scripts": {
"build": "tsc -b .",
"lint": "tslint -c tslint.json --project ."
},
"dependencies": {
"bignumber.js": "^9.0.0",
"web3": "1.2.4",
"web3-core-helpers": "1.2.4",
"tmp": "^0.1.0",
"targz": "^1.0.1",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0"
},
"engines": {
"node": ">=8.13.0"
}
}