summary refs log tree commit diff
path: root/pkgs/tools/misc/near-cli/package.json
blob: a6b794a99115abd7facbbf8561396dce6ffbd78d (plain) (blame)
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
82
83
{
  "name": "near-cli",
  "version": "3.4.2",
  "description": "General purpose command line tools for interacting with NEAR Protocol",
  "engines": {
    "node": ">= 12"
  },
  "main": "index.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"
  },
  "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",
    "lodash": "^4.17.21",
    "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": {
    "analytics-node": "^6.1.0",
    "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",
    "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"
  ]
}