forked from jaroslav-kubicek/eslint-plugin-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 836 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
{
"name": "@productboard/eslint-plugin-relay",
"private": true,
"version": "1.9.6",
"description": "ESLint plugin for Relay.",
"main": "eslint-plugin-relay",
"repository": "https://github.com/productboard/eslint-plugin-relay",
"license": "UNLICENSED",
"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": {
"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"
}
}