forked from fauna/fauna-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.51 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "fauna-shell",
"description": "faunadb shell",
"version": "0.15.0",
"author": "Fauna",
"bin": {
"fauna": "./bin/run"
},
"bugs": "https://github.com/fauna/fauna-shell/issues",
"dependencies": {
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-autocomplete": "^0.1.4",
"@oclif/plugin-help": "^1.2.11",
"chalk": "^4.1.2",
"cli-table": "^0.3.1",
"cli-ux": "^4.8.0",
"cross-fetch": "^3.1.4",
"csv-parse": "^5.0.4",
"csv-stream": "^0.2.0",
"dotenv": "^8.2.0",
"escodegen": "^1.12.0",
"esprima": "^4.0.1",
"exponential-backoff": "^3.1.0",
"faunadb": "^4.5.4",
"globby": "^11.0.0",
"heroku-cli-util": "^8.0.9",
"ini": "^1.3.5",
"inquirer": "^8.1.1",
"moment": "^2.29.1",
"node-fetch": "^2.6.7",
"object-sizeof": "^1.6.1",
"prettier": "^2.3.0",
"rate-limiter-flexible": "^2.3.6",
"request": "^2.88.0",
"request-promise": "^4.2.5",
"stream-json": "^1.7.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@oclif/dev-cli": "^1.22.2",
"@oclif/test": "^1.2.5",
"chai": "^4.2.0",
"eslint": "^8.10.0",
"eslint-config-oclif": "^1.5.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"mocha": "^7.1.1",
"mock-require": "^3.0.3",
"nock": "^13.1.0",
"nyc": "^14.1.1",
"prettier": "^2.3.0",
"sinon": "^11.1.1",
"word-wrap": "^1.2.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/fauna/fauna-shell",
"keywords": [
"fauna",
"faunadb",
"shell",
"database",
"nosql",
"oclif"
],
"license": "MPL-2.0",
"main": "src/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "fauna",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete"
]
},
"repository": "fauna/fauna-shell",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"pretest": "npm run fixlint",
"local-test": "export $(cat .env | xargs); nyc mocha --forbid-only \"test/**/*.test.js\"",
"test": "export $(cat .env.test | xargs); nyc mocha --forbid-only \"test/**/*.test.js\"",
"lint": "eslint .",
"fixlint": "eslint . --fix",
"version": "oclif-dev readme && git add README.md"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest"
}
}
}