forked from graphql-compose/graphql-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.17 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
{
"name": "graphql-compose",
"version": "0.0.0-semantically-released",
"description": "GraphQL schema builder from different data sources with middleware extensions.",
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose.git"
},
"keywords": [
"graphql",
"compose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose",
"peerDependencies": {
"graphql": "^14.2.0 || ^15.0.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@types/lodash": "^4.14.168",
"@typescript-eslint/eslint-plugin": "4.22.0",
"@typescript-eslint/parser": "4.22.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.25.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.4.0",
"graphql": "15.5.0",
"jest": "26.6.3",
"jest-junit": "12.0.0",
"prettier": "2.2.1",
"rimraf": "3.0.2",
"semantic-release": "17.4.2",
"ts-jest": "26.5.5",
"typescript": "4.2.4"
},
"dependencies": {
"@types/object-path": "^0.11.0",
"graphql-type-json": "0.3.2",
"object-path": "0.11.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 4",
"lint": "npm run eslint",
"tscheck": "tsc --noEmit",
"eslint": "eslint --ext .ts ./src",
"test": "npm run coverage && npm run eslint && npm run tscheck",
"semantic-release": "semantic-release",
"test-prev-vers": "yarn add [email protected] --dev && jest && yarn remove graphql && yarn add graphql --dev --exact && git checkout HEAD -- package.json yarn.lock"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/graphql-compose",
"logo": "https://opencollective.com/graphql-compose/logo.txt"
}
}