forked from graphql-compose/graphql-compose-dataloader
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "graphql-compose-dataloader-new",
"version": "1.0.6",
"description": "Add DataLoader to graphql-composer resolvers.",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"build": "npm run build-cjs && npm run build-es",
"build-cjs": "rimraf lib && babel src --extensions \".ts\" -d lib",
"build-es": "rimraf es && cross-env BABEL_ENV=es babel src --extensions \".ts\" --ignore __tests__,__mocks__ -d es",
"coverage": "nyc npm run test",
"link": "yarn link graphql-compose && yarn link",
"unlink": "yarn unlink graphql-compose && yarn add graphql-compose",
"test": "mocha --compilers js:babel-core/register --reporter dot --timeout 20000",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"graphql",
"compose",
"schema",
"dataloader",
"graphql-schema",
"graphql-compose"
],
"repository": {
"type": "git",
"url": "https://github.com/ddzyan/graphql-compose-dataloader.git"
},
"author": "ddzyan",
"license": "MIT",
"bugs": {
"url": "https://github.com/ddzyan/graphql-compose-dataloader/issues"
},
"homepage": "https://github.com/ddzyan/graphql-compose-dataloader",
"dependencies": {
"babel-runtime": "^6.22.0",
"dataloader": "^1.3.0",
"md5": "^2.2.1",
"object-path": "^0.11.3",
"string-hash": "^1.1.1"
},
"peerDependencies": {
"graphql": ">=0.9.0",
"graphql-compose": ">=1.4.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-runtime": "^6.22.0",
"chai": "^4.1.2",
"cross-env": "^5.0.5",
"cz-conventional-changelog": "^2.0.0",
"graphql": "^0.11.7",
"graphql-compose": "^2.9.1",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"rimraf": "^2.5.4",
"semantic-release": "^8.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/__mocks__/**",
"**/__tests__/**",
"resources",
"node_modules"
],
"reporter": [
"lcov",
"text"
]
}
}