-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.79 KB
/
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
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
{
"name": "@0xmetropolis/metal",
"version": "0.9.0",
"description": "Smart contract deployment tool.",
"author": "Metropolis (@0xmetropolis)",
"bin": {
"metal": "./bin/run"
},
"engines": {
"node": ">=16.10.0"
},
"homepage": "https://github.com/0xmetropolis/metal",
"license": "ISC",
"main": "dist/index.js",
"repository": "0xmetropolis/metal",
"scripts": {
"build": "npx tsc",
"test": "jest",
"watch": "tsc -w",
"dev": "yarn build && yarn install:dev && metal -h",
"install:dev": "sh ./bin/setup-dev.sh",
"install:global": "yarn global add file:$PWD"
},
"dependencies": {
"adm-zip": "^0.5.10",
"chalk": "^2.0.1",
"inquirer": "^8.0.0",
"inquirer-file-tree-selection-prompt": "^1",
"jose": "^4.14.6",
"node-emoji": "^1.7.0",
"node-fetch": "^2.6.12",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.3",
"@types/chalk": "^0.4.31",
"@types/cors": "^2.8.13",
"@types/inquirer": "^8.0.0",
"@types/jest": "^29.5.3",
"@types/node": "^18.17.5",
"@types/node-emoji": "^1.4.0",
"@types/node-fetch": "^2.6.4",
"@types/supertest": "^2.0.12",
"@types/yargs": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.60.1",
"babel-eslint": "^7.2.3",
"bdd-stdin": "^0.2.0",
"eslint": "^8.47.0",
"eslint-config-buildo": "^0.2.2",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^0.14.3",
"jest": "^29.6.2",
"lint-staged": "^4.0.2",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"test": "^0.6.0",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6",
"typescript-eslint-parser": "^4.0.0"
}
}