-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
118 lines (118 loc) · 3.11 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "aelf-command",
"version": "0.1.52",
"description": "A CLI tools for AElf",
"main": "src/index.js",
"type": "module",
"types": "types/index.d.ts",
"scripts": {
"commit": "git-cz",
"lint": "eslint src",
"release": "standard-version",
"test": "jest --config=jest.config.js --detectOpenHandles",
"test:watch": "jest --config=jest.config.js --watch --detectOpenHandles",
"test:coverage": "jest --config=jest.config.js --coverage --detectOpenHandles",
"prepare": "husky",
"lint-staged": "lint-staged",
"tsc": "tsc"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/AElfProject/aelf-command.git"
},
"author": "Atom Yang <[email protected]>",
"bin": {
"aelf-command": "./bin/aelf-command.js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AElfProject/aelf-command/issues"
},
"homepage": "https://github.com/AElfProject/aelf-command#readme",
"devEngines": {
"node": ">=18.18.0"
},
"files": [
"bin",
"src",
"README.md",
"yarn.lock"
],
"engines": {
"node": ">=18.18.0"
},
"engineStrict": true,
"dependencies": {
"@babel/core": "^7.24.6",
"@babel/plugin-syntax-import-attributes": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"aelf-sdk": "^3.4.12",
"async-validator": "^4.2.5",
"babel-plugin-transform-import-meta": "^2.2.1",
"boxen": "^7.1.1",
"camelcase": "^8.0.0",
"chalk": "^5.3.0",
"check-node-version": "^4.2.1",
"columnify": "^1.6.0",
"commander": "^12.1.0",
"csv-parser": "^3.0.0",
"elliptic": "^6.5.5",
"inquirer": "^9.2.22",
"inquirer-date-prompt": "^3.0.0",
"inquirer-search-list": "^1.2.6",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"node-cjs-interop": "^0.1.6",
"ora": "^8.0.1",
"prompts": "^2.4.2",
"socket.io": "^4.7.5",
"update-notifier": "^7.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.24.7",
"@babel/eslint-plugin": "^7.24.7",
"@babel/plugin-syntax-import-assertions": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.0.3",
"@eslint/eslintrc": "^3.1.0",
"@types/inquirer": "^9.0.7",
"commitizen": "^4.3.0",
"commitlint": "^19.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.5.0",
"eslint-plugin-prettier": "^5.1.3",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.5",
"prettier": "^3.3.2",
"socket.io-client": "^4.7.5",
"standard-version": "^9.5.0",
"typescript": "^5.5.2"
},
"keywords": [
"AElf",
"aelf",
"CLI",
"aelf-sdk",
"blockchain"
],
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}