1{
2 "name": "near-cli",
3 "version": "3.4.2",
4 "description": "General purpose command line tools for interacting with NEAR Protocol",
5 "engines": {
6 "node": ">= 12"
7 },
8 "main": "index.js",
9 "scripts": {
10 "pretest": "rm -rf tmp-project",
11 "test": "npm run test:unit && npm run test:integration",
12 "test:unit": "jest",
13 "test:integration": "bash ./test/index.sh",
14 "lint": "eslint .",
15 "fix": "eslint . --fix"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/near/near-cli.git"
20 },
21 "author": "Jane Degtiareva",
22 "license": "(MIT AND Apache-2.0)",
23 "bugs": {
24 "url": "https://github.com/near/near-cli/issues"
25 },
26 "homepage": "https://github.com/near/near-cli#readme",
27 "bin": {
28 "near": "bin/near"
29 },
30 "devDependencies": {
31 "danger": "^10.6.6",
32 "lodash": "^4.17.21",
33 "eslint": "^7.0.0",
34 "jest": "^26.1.0",
35 "strip-ansi": "^7.0.0",
36 "strip-ansi-cli": "^3.0.0",
37 "ts-node": "^10.4.0",
38 "typescript": "^4.5.4"
39 },
40 "dependencies": {
41 "analytics-node": "^6.1.0",
42 "ascii-table": "0.0.9",
43 "bn.js": "^5.1.1",
44 "bs58": "^4.0.1",
45 "chalk": "^4.0.0",
46 "flagged-respawn": "^1.0.1",
47 "is-ci": "^2.0.0",
48 "jest-environment-node": "^27.0.6",
49 "ncp": "^2.0.0",
50 "near-api-js": "^0.44.2",
51 "near-seed-phrase": "^0.2.0",
52 "open": "^8.0.7",
53 "rimraf": "^3.0.0",
54 "stoppable": "^1.1.0",
55 "tcp-port-used": "^1.0.1",
56 "update-notifier": "^5.0.0",
57 "uuid": "^8.0.0",
58 "v8flags": "^3.1.3",
59 "yargs": "^16.0.3"
60 },
61 "optionalDependencies": {
62 "@ledgerhq/hw-transport-node-hid": "^6.1.0",
63 "near-ledger-js": "^0.2.0"
64 },
65 "keywords": [
66 "blockchain",
67 "crypto",
68 "dapps",
69 "distributed",
70 "applications",
71 "distributed applications"
72 ],
73 "files": [
74 "bin",
75 "commands",
76 "middleware",
77 "utils",
78 "config.js",
79 "get-config.js",
80 "test_environment.js",
81 "context"
82 ]
83}