UNPKG

1.39 kBJSONView Raw
1{
2 "name": "fauna-shell",
3 "description": "faunadb shell",
4 "version": "0.2.0",
5 "author": "Alvaro Videla",
6 "bin": {
7 "fauna": "./bin/run"
8 },
9 "bugs": "https://github.com/fauna/fauna-shell/issues",
10 "dependencies": {
11 "@oclif/command": "1",
12 "@oclif/config": "1",
13 "@oclif/plugin-help": "1",
14 "cli-table": "^0.3.1",
15 "cli-ux": "^4.6.1",
16 "faunadb": "^2.0.0",
17 "globby": "8",
18 "ini": "^1.3.5",
19 "request": "^2.87.0"
20 },
21 "devDependencies": {
22 "@oclif/dev-cli": "1",
23 "@oclif/test": "1",
24 "chai": "4",
25 "eslint": "4",
26 "eslint-config-oclif": "1",
27 "mocha": "5",
28 "nyc": "11"
29 },
30 "engines": {
31 "node": ">=8.0.0"
32 },
33 "files": [
34 "/bin",
35 "/oclif.manifest.json",
36 "/src"
37 ],
38 "homepage": "https://github.com/fauna/fauna-shell",
39 "keywords": [
40 "fauna",
41 "faunadb",
42 "shell",
43 "database",
44 "nosql",
45 "oclif"
46 ],
47 "license": "MPL-2.0",
48 "main": "src/index.js",
49 "oclif": {
50 "commands": "./src/commands",
51 "bin": "fauna",
52 "plugins": [
53 "@oclif/plugin-help"
54 ]
55 },
56 "repository": "fauna/fauna-shell",
57 "scripts": {
58 "postpack": "rm -f oclif.manifest.json",
59 "posttest": "eslint .",
60 "prepack": "oclif-dev manifest && oclif-dev readme",
61 "test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
62 "version": "oclif-dev readme && git add README.md"
63 }
64}