forked from smartcontractkit/chainlink
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.91 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.91 KB
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
{
"name": "@chainlink/belt",
"private": false,
"description": "A toolbelt for performing various commands on chainlink smart contracts.",
"version": "0.0.3",
"author": "Chainlink Devs",
"bin": {
"belt": "./bin/run"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn setup --force && oclif-dev manifest && oclif-dev readme",
"setup": "tsc -b",
"clean": "tsc -b --clean",
"test": "jest",
"prepublishOnly": "yarn clean && yarn setup",
"version": "oclif-dev readme && git add README.md"
},
"bugs": "https://github.com/smartcontractkit/chainlink/issues",
"dependencies": {
"@0x/sol-compiler": "^4.0.8",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"@oclif/plugin-not-found": "^1.2.3",
"chalk": "^4.1.0",
"cli-ux": "^5.4.4",
"debug": "^4.1.1",
"inquirer": "^7.3.3",
"shelljs": "^0.8.3",
"ts-generator": "^0.0.8",
"tslib": "^1",
"typechain": "^1.0.5",
"typechain-target-ethers": "^1.0.4"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/debug": "^4.1.5",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26.0.8",
"@types/mock-fs": "^4.10.0",
"@types/node": "^13",
"@types/shelljs": "^0.8.6",
"globby": "^11",
"jest": "^25.1.0",
"mock-fs": "^4.12.0",
"ts-jest": "^25.2.0",
"ts-node": "^8",
"typescript": "^3.7.5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/smartcontractkit/chainlink",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/src/index.js",
"oclif": {
"commands": "./lib/src/commands",
"bin": "belt",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
]
},
"repository": "smartcontractkit/chainlink",
"types": "lib/src/index.d.ts"
}