forked from circlefin/contract-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.91 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
67
68
69
70
71
72
73
74
75
76
{
"name": "@circle-fin/contract-cli",
"version": "1.0.3",
"description": "CLI for managing smart contracts",
"license": "Apache-2.0",
"bin": {
"contract-cli": "./bin/run"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/circlefin/contract-cli.git"
},
"keywords": [
"circle",
"smart-contracts",
"blockchain",
"smart-contracts-tools"
],
"bugs": {
"url": "https://github.com/circlefin/contract-cli/issues"
},
"engines": {
"node": ">=12.0.0"
},
"homepage": "https://github.com/circlefin/contract-cli#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "shx rm -rf dist && tsc -b&& shx cp -R ./src/resources ./dist/resources",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "yarn jest",
"test:cov": "yarn jest --coverage=true"
},
"files": [
"/bin",
"/dist",
"Dockerfile"
],
"dependencies": {
"@oclif/core": "^1.13.10",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@4c/tsconfig": "^0.4.1",
"@oclif/test": "^2.1.1",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint": "^8.21.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^28.1.3",
"oclif": "^3.1.2",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"shx": "^0.3.4",
"ts-jest": "^28.0.7"
},
"oclif": {
"commands": "./dist/commands",
"bin": "contract-cli"
}
}