forked from near/near-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.52 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
{
"name": "near-cli",
"version": "4.0.5",
"description": "Simple CLI for interacting with NEAR Protocol",
"engines": {
"node": ">= 16"
},
"main": "bin/near-cli.js",
"scripts": {
"pretest": "rm -rf tmp-project",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest",
"test:integration": "bash ./test/index.sh",
"lint": "eslint .",
"fix": "eslint . --fix",
"start": "node bin/near-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/near/near-cli.git"
},
"author": "Jane Degtiareva",
"license": "(MIT AND Apache-2.0)",
"bugs": {
"url": "https://github.com/near/near-cli/issues"
},
"homepage": "https://github.com/near/near-cli#readme",
"bin": {
"near": "bin/near"
},
"devDependencies": {
"danger": "^11.3.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"typescript": "^5.3.3"
},
"dependencies": {
"ascii-table": "^0.0.9",
"bs58": "^5.0.0",
"chalk": "^4.1.2",
"flagged-respawn": "^2.0.0",
"is-ci": "^3.0.1",
"near-api-js": "^3.0.2",
"near-seed-phrase": "^0.2.0",
"open": "^8.4.2",
"stoppable": "^1.1.0",
"tcp-port-used": "^1.0.2",
"update-notifier": "^5.1.0",
"v8flags": "^4.0.1",
"yargs": "^17.7.2"
},
"keywords": [
"blockchain",
"crypto",
"dapps",
"distributed",
"applications",
"distributed applications"
],
"files": [
"bin",
"commands",
"middleware",
"utils",
"config.js"
]
}