-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.71 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
{
"name": "@aeternity/aepp-cli",
"version": "7.0.0",
"description": "Aeternity command line interface",
"bin": {
"aecli": "src/aecli.js"
},
"type": "module",
"dependencies": {
"@aeternity/aepp-sdk": "^14.0.0",
"@azure/core-rest-pipeline": "^1.18.2",
"argon2": "^0.41.1",
"bignumber.js": "^9.1.2",
"commander": "^13.0.0",
"env-paths": "^3.0.0",
"fs-extra": "^11.3.0",
"prompts": "^2.4.2",
"update-notifier": "^7.3.1",
"uuid": "^11.0.5"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@types/fs-extra": "^11.0.4",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"mock-fs": "^5.4.1",
"npm-run-all2": "^7.0.2",
"prettier": "^3.4.2",
"sinon": "^19.0.2",
"standard-version": "^9.5.0",
"tsx": "^4.19.2",
"typescript-eslint": "^8.20.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeternity/aepp-cli-js.git"
},
"scripts": {
"commitlint": "commitlint --from develop",
"docs": "npx tsx ./scripts/docs/index.ts",
"lint": "run-p lint:*",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint .",
"format": "prettier . --write",
"test": "mocha",
"test:watch": "mocha --watch",
"release": "standard-version --skip.tag"
},
"keywords": [
"CLI",
"aeternity",
"blockchain"
],
"license": "ISC",
"engines": {
"node": ">=18.19.0"
},
"files": [
"src"
],
"contributors": [
"Nazar Duchak <[email protected]>",
"Denis Davidyuk <[email protected]>"
]
}