-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
121 lines (121 loc) · 3.03 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "fauna-shell",
"description": "faunadb shell",
"version": "3.0.1",
"author": "Fauna",
"bin": {
"fauna": "./bin/run"
},
"bugs": "https://github.com/fauna/fauna-shell/issues",
"dependencies": {
"@inquirer/prompts": "^3.1.1",
"@oclif/core": "^4.0.12",
"@oclif/plugin-help": "^5.2.14",
"@oclif/plugin-plugins": "^2.4.7",
"chalk": "^4.1.2",
"cli-table": "^0.3.1",
"cli-ux": "^4.8.0",
"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",
"ini": "^1.3.5",
"inquirer": "^8.1.1",
"moment": "^2.29.1",
"object-sizeof": "^1.6.1",
"prettier": "^2.3.0",
"rate-limiter-flexible": "^2.3.6",
"stream-json": "^1.7.3",
"supports-color": "^8"
},
"devDependencies": {
"@babel/eslint-parser": "^7.17.0",
"@inquirer/testing": "^2.1.7",
"@oclif/test": "^4.0.4",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.1",
"@types/node": "^20.6.0",
"@types/sinon": "^17.0.3",
"@types/supports-color": "^8.1.3",
"@typescript-eslint/parser": "6.7.3",
"c8": "^8.0.1",
"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": "^29.7.0",
"mocha": "^10.2.0",
"mock-require": "^3.0.3",
"nock": "^14.0.0-beta.8",
"oclif": "^3.9.2",
"prettier": "^2.3.0",
"sinon": "^11.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"word-wrap": "^1.2.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/bin",
"/oclif.manifest.json",
"/src",
"/dist"
],
"homepage": "https://github.com/fauna/fauna-shell",
"keywords": [
"fauna",
"faunadb",
"shell",
"database",
"nosql",
"oclif"
],
"license": "MPL-2.0",
"main": "dist/index.js",
"oclif": {
"helpClass": "dist/custom-help",
"bin": "fauna",
"dirname": "fauna",
"commands": "./dist/commands",
"topicSeparator": " ",
"topics": {
"endpoint": {
"description": "Manage endpoints in ~/.fauna-shell."
},
"schema": {
"description": "Manage database schema."
},
"project": {
"description": "Manage project settings in .fauna-project."
},
"environment": {
"description": "Manage environments in the current project."
}
}
},
"repository": "fauna/fauna-shell",
"scripts": {
"build": "rm -rf dist && tsc -b",
"postpack": "rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest",
"pretest": "yarn fixlint",
"local-test": "export $(cat .env | xargs); mocha \"test/**/*.test.{js,ts}\"",
"test": "c8 -r html mocha --forbid-only \"test/**/*.test.{js,ts}\"",
"lint": "eslint .",
"fixlint": "eslint . --fix",
"fmt": "prettier -w src"
},
"husky": {
"hooks": {
"pre-commit": "npm run pretest"
}
}
}