forked from ardriveapp/ardrive-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.22 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
{
"name": "ardrive-cli",
"version": "1.22.0",
"description": "The ArDrive Command Line Interface (CLI is a Node.js application for terminal-based ArDrive workflows. It also offers utility operations for securely interacting with Arweave wallets and inspecting various Arweave blockchain conditions.",
"main": "./lib/index.js",
"bin": {
"ardrive": "./lib/index.js"
},
"types": "./lib/index.d.ts",
"dependencies": {
"ardrive-core-js": "1.18.0",
"arweave": "1.11.4",
"axios": "^0.21.1",
"bn.js": "^5.2.1",
"commander": "^8.2.0",
"ipfs-only-hash": "^4.0.0",
"lodash": "^4.17.21",
"prompts": "^2.4.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bn.js": "^5",
"@types/chai": "^4.2.21",
"@types/jwk-to-pem": "^2.0.0",
"@types/lodash": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^14.14.32",
"@types/node-fetch": "^2.6.1",
"@types/prompts": "^2.0.9",
"@types/sinon": "^10.0.2",
"@types/source-map-support": "^0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.3.4",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "latest",
"husky": "^=6",
"lint-staged": "^11.0.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sinon": "^11.1.2",
"source-map-support": "^0.5.20",
"ts-node": "^10.2.1",
"ts-sinon": "^2.0.1",
"typescript": "^4.2.3"
},
"scripts": {
"clean": "rimraf [ lib .nyc_output node_modules coverage ]",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint . --ext .ts",
"lintfix": "eslint . --ext .ts --fix",
"test": "nyc mocha",
"coverage": "nyc --reporter text mocha",
"typecheck": "tsc --noemit",
"build": "yarn clean && tsc --project ./tsconfig.prod.json",
"ci": "yarn build && yarn test",
"dev": "yarn clean && tsc --project ./tsconfig.prod.json -w"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Permanent Data Solutions Inc",
"email": "[email protected]",
"website": "https://ardrive.io"
},
"repository": {
"type": "git",
"url": "https://github.com/ardriveapp/ardrive-cli.git"
},
"files": [
"lib/**/*"
]
}