This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·85 lines (85 loc) · 2.53 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
{
"name": "@feathers-plus/graphql",
"description": "A high performance GraphQL adapter for SQL and non-SQL databases.",
"version": "1.10.0",
"homepage": "https://github.com/feathers-plus/graphql",
"main": "lib/",
"keywords": [
"feathers",
"feathersjs",
"feathers-plugin",
"feathers-plus",
"cli",
"generator",
"graphql"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathers-plus/graphql.git"
},
"author": {
"name": "John J. Szwaronek",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathers-plus/graphql/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
"lintex": "semistandard example/*.js example/**/*.js",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage",
"eslint": "eslint lib/. test/. example/config/. example/public/fedathers-app.js example/src/. example/test/. --config .eslintrc.json"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathers-plus/batch-loader": "0.3.0",
"@feathers-plus/cache": "1.3.1",
"@feathers-plus/common": "0.1.0",
"@feathersjs/errors": "3.2.0",
"debug": "3.1.0",
"feathers-hooks-common": "4.5.6",
"graphql": "0.11.7",
"graphql-resolvers-ast": "1.4.0",
"graphql-tools": "2.0.0",
"graphql-type-json": "0.1.4",
"join-monster": "2.0.15",
"join-monster-graphql-tools-adapter": "0.0.2",
"lodash.merge": "4.6.1",
"mongo-sql": "4.0.2",
"traverse": "0.6.6"
},
"devDependencies": {
"chai": "3.5.0",
"deep-equal": "1.0.1",
"eslint": "4.8.0",
"feathers-nedb": "2.7.0",
"istanbul": "1.1.0-alpha.1",
"merge-graphql-schemas": "1.1.4",
"mocha": "3.5.3",
"nedb": "1.8.0",
"semistandard": "11.0.0",
"sqlite": "2.8.0",
"sqlite3": "3.1.13"
}
}