forked from near/near-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 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
74
75
76
77
78
79
80
81
{
"name": "near-cli",
"version": "3.2.0",
"description": "General purpose command line tools for interacting with NEAR Protocol",
"engines": {
"node": ">= 12"
},
"main": "index.js",
"scripts": {
"pretest": "rm -rf tmp-project",
"test": "jest && ./test/index.sh",
"lint": "eslint .",
"fix": "eslint . --fix"
},
"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": "^10.6.6",
"danger-plugin-yarn": "^1.3.2",
"eslint": "^7.0.0",
"jest": "^26.1.0",
"strip-ansi": "^7.0.0",
"strip-ansi-cli": "^3.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"dependencies": {
"ascii-table": "0.0.9",
"bn.js": "^5.1.1",
"bs58": "^4.0.1",
"chalk": "^4.0.0",
"flagged-respawn": "^1.0.1",
"is-ci": "^2.0.0",
"jest-environment-node": "^27.0.6",
"mixpanel": "^0.13.0",
"ncp": "^2.0.0",
"near-api-js": "^0.44.2",
"near-seed-phrase": "^0.2.0",
"open": "^8.0.7",
"rimraf": "^3.0.0",
"stoppable": "^1.1.0",
"tcp-port-used": "^1.0.1",
"update-notifier": "^5.0.0",
"uuid": "^8.0.0",
"v8flags": "^3.1.3",
"yargs": "^16.0.3"
},
"optionalDependencies": {
"@ledgerhq/hw-transport-node-hid": "^6.1.0",
"near-ledger-js": "^0.2.0"
},
"keywords": [
"blockchain",
"crypto",
"dapps",
"distributed",
"applications",
"distributed applications"
],
"files": [
"bin",
"commands",
"middleware",
"utils",
"config.js",
"get-config.js",
"test_environment.js",
"context"
]
}