UNPKG

1.36 kBJSONView Raw
1{
2 "name": "fauna-shell",
3 "description": "faunadb shell",
4 "version": "0.1.3",
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 },
20 "devDependencies": {
21 "@oclif/dev-cli": "1",
22 "@oclif/test": "1",
23 "chai": "4",
24 "eslint": "4",
25 "eslint-config-oclif": "1",
26 "mocha": "5",
27 "nyc": "11"
28 },
29 "engines": {
30 "node": ">=8.0.0"
31 },
32 "files": [
33 "/bin",
34 "/oclif.manifest.json",
35 "/src"
36 ],
37 "homepage": "https://github.com/fauna/fauna-shell",
38 "keywords": [
39 "fauna",
40 "faunadb",
41 "shell",
42 "database",
43 "nosql",
44 "oclif"
45 ],
46 "license": "MPL-2.0",
47 "main": "src/index.js",
48 "oclif": {
49 "commands": "./src/commands",
50 "bin": "fauna",
51 "plugins": [
52 "@oclif/plugin-help"
53 ]
54 },
55 "repository": "fauna/fauna-shell",
56 "scripts": {
57 "postpack": "rm -f oclif.manifest.json",
58 "posttest": "eslint .",
59 "prepack": "oclif-dev manifest && oclif-dev readme",
60 "test": "nyc mocha --forbid-only \"test/**/*.test.js\"",
61 "version": "oclif-dev readme && git add README.md"
62 }
63}