-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.99 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
{
"name": "cpchain-cli",
"version": "0.0.16",
"description": "A CLI tool for developing smart contracts on CPChain mainnet",
"main": "src/index.ts",
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && webpack && shebang-fix",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts .",
"lint:fix": "eslint --ignore-path .eslintignore --ext .js,.ts --fix .",
"prepare": "husky install",
"cloc": "gocloc --not-match-d='node_modules|src/generated' .",
"test": "jest --coverage",
"test:watch": "jest --watch",
"pub": "npm run build && npm publish --access public"
},
"bin": {
"cpchain-cli": "./bundle"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CPChain/cpchain-cli.git"
},
"keywords": [
"CPChain"
],
"author": "liaojl@cpchain.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/CPChain/cpchain-cli/issues"
},
"engines": {
"node": ">=14.14.0"
},
"homepage": "https://github.com/CPChain/cpchain-cli#readme",
"devDependencies": {
"@swc/cli": "^0.1.56",
"@swc/core": "^1.2.160",
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^28.0.0",
"swc-loader": "^0.1.15",
"ts-jest": "^28.0.0-next.0",
"ts-loader": "^9.2.8",
"typescript": "^4.6.2",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@types/node": "^16.11.12",
"boxen": "^6.2.1",
"chalk": "^5.0.1",
"commander": "^9.1.0",
"cpchain-typescript-sdk": "^0.0.32",
"cross-fetch": "^3.1.5",
"ganache": "^7.4.1",
"kleur": "^4.1.4",
"leven": "^4.0.0",
"prompts": "^2.4.2",
"semver": "^7.3.7",
"toml": "^3.0.0",
"ts-node": "^10.7.0"
}
}