-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 1.77 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
{
"name": "apollo-directive",
"version": "0.1.2",
"description": "tools for simplifying the process of implementing custom GraphQL schema directives in Apollo Server",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "jest",
"lint": "eslint .",
"test:integration": "npm test -- -t integration --verbose",
"test:travis": "npm run test -- --no-cache --coverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the-vampiire/apollo-directive.git"
},
"keywords": [
"apollo",
"custom",
"directives",
"graphql",
"server",
"schema"
],
"author": "the-vampiire",
"license": "MIT",
"bugs": {
"url": "https://github.com/the-vampiire/apollo-directive/issues"
},
"homepage": "https://github.com/the-vampiire/apollo-directive#readme",
"dependencies": {
"graphql": "^14.4.2",
"graphql-tools": "^4.0.5"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"coveralls": "^3.0.5",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.0",
"jest": "^24.8.0"
},
"eslintConfig": {
"env": {
"es6": true,
"commonjs": true,
"jest/globals": true
},
"extends": [
"prettier",
"airbnb-base",
"plugin:jest/recommended"
],
"plugins": [
"jest",
"import"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"quotes": [
"error",
"double"
],
"max-len": [
0,
100
]
}
}
}