-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "graphql-relay",
"version": "0.10.2",
"description": "A library to help construct a graphql-js server supporting react-relay.",
"license": "MIT",
"private": true,
"main": "index",
"typesVersions": {
">=4.1.0": {
"*": [
"*"
]
}
},
"sideEffects": false,
"homepage": "https://github.com/graphql/graphql-relay-js",
"bugs": {
"url": "https://github.com/graphql/graphql-relay-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/graphql/graphql-relay-js.git"
},
"keywords": [
"graphql"
],
"engines": {
"node": "^12.20.0 || ^14.15.0 || >= 15.9.0"
},
"scripts": {
"preversion": "npm ci && npm run test",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling",
"lint": "eslint --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "mocha --full-trace src/**/__tests__/**/*-test.ts",
"testonly:cover": "nyc npm run testonly",
"prettier": "prettier --write --list-different .",
"prettier:check": "prettier --check .",
"check:spelling": "cspell --no-progress '**/*'",
"build": "node resources/build.js"
},
"peerDependencies": {
"graphql": "^16.2.0"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.4",
"@babel/node": "^7.15.4",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"chai": "^4.3.4",
"cspell": "^5.9.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-istanbul": "^0.1.2",
"eslint-plugin-node": "^11.1.0",
"flow-bin": "^0.159.0",
"graphql": "^16.2.0",
"mocha": "^9.1.1",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"typescript": "^4.4.2"
},
"publishConfig": {
"tag": "latest"
}
}