-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.82 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
{
"name": "web3-storage-cli",
"version": "0.1.0",
"description": "CLI tools for using web3.storage",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"bin": {
"web3": "dist/cli.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext '.js,.jsx,.ts,.tsx,.md'",
"prettier": "prettier -c --write '**/*'",
"test": "jest --config jest.config.json --no-cache",
"hook": "npm run build && npm run prettier && npm run lint && npm run test",
"web3": "node dist/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "npm run hook"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tenk-dao/web3-cli.git"
},
"keywords": [
"typescript",
"CLI"
],
"engines": {
"node": ">=10"
},
"author": "Willem Wyndham",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/TENK-DAO/web3-cli/issues"
},
"homepage": "https://github.com/TENK-DAO/web3-cli",
"devDependencies": {
"@types/figlet": "^1.5.4",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.13",
"@types/yargs": "^17.0.7",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.4.1",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@ipld/car": "^4.0.0",
"chalk": "^4.0.0",
"figlet": "^1.5.2",
"ipfs-car": "^0.8.0",
"web3.storage": "^4.3.0",
"yargs": "^17.3.0"
}
}