-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "graphql-directives-middlewares",
"version": "0.2.2",
"description": "GraphQL directives as middlewares",
"main": "dist/index.js",
"module": "dist/index.js",
"repository": "https://github.com/unirakun/graphql-directives-middlewares",
"author": "Fabien JUIF <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=10"
},
"scripts": {
"test": "jest",
"lint": "eslint src",
"build": "babel src --source-type module --out-dir dist",
"coverage": "jest --coverage && cat ./coverage/lcov.info | yarn coveralls",
"ci": "run-p lint coverage build"
},
"devDependencies": {
"@babel/cli": "7.8.4",
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"babel-jest": "^26.0.1",
"coveralls": "^3.1.0",
"eslint": "7.0.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "2.20.2",
"graphql": "15.0.0",
"graphql-tag": "^2.10.3",
"graphql-tools": "5.0.0",
"jest": "^26.0.1",
"npm-run-all": "4.1.5"
},
"keywords": [
"graphql",
"directive",
"directives",
"middleware",
"middlewares",
"preserve",
"order"
],
"eslintConfig": {
"extends": "airbnb-base",
"ignorePatterns": [
"dist/**"
],
"rules": {
"semi": [
"error",
"never"
],
"import/prefer-default-export": "off",
"no-param-reassign": "off",
"max-classes-per-file": "off",
"object-curly-newline": "off",
"implicit-arrow-linebreak": "off"
}
}
}