forked from relayjs/eslint-plugin-relay
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 849 Bytes
/
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
{
"name": "eslint-plugin-relay",
"version": "1.8.4-alpha",
"description": "ESLint plugin for Relay.",
"main": "eslint-plugin-relay",
"repository": "relayjs/eslint-plugin-relay",
"license": "MIT",
"scripts": {
"lint": "eslint eslint-plugin-relay.js src",
"test": "mocha",
"test-watch": "mocha --watch",
"prettier": "prettier --write '**/*.js'",
"prettier-check": "prettier --check '**/*.js'"
},
"files": [
"eslint-plugin-relay.js",
"src/",
"LICENSE"
],
"dependencies": {
"graphql": "^14.0.0 || ^15.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "^5.4.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^9.1.3",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
}
}