-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
52 lines (52 loc) · 1.7 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
{
"name": "@pinterest/graphql-lint-rules",
"version": "2.2.1",
"description": "Pinterest lint rules for use with graphql-schema-linter",
"license": "Apache-2.0",
"repository": "github:pinterest/graphql-lint-rules",
"bugs": "https://github.com/pinterest/graphql-lint-rules/issues",
"scripts": {
"build": "rm -rf rules && rollup -c",
"format": "eslint '*/**/*.{js,ts}' --quiet --fix",
"lint": "eslint '*/**/*.{js,ts}'",
"prepublish": "npm run typecheck && npm run test && npm run lint && npm run build",
"test": "env TS_NODE_FILES=True TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'test/**/*.ts'",
"typecheck": "tsc --noEmit",
"watch": "rollup -wc"
},
"engines": {
"node": ">=16.11",
"npm": ">=8.1"
},
"files": [
"rules"
],
"peerDependencies": {
"graphql-schema-linter": "^3.0.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@tsconfig/node16-strictest-esm": "^1.0.1",
"@types/mocha": "^9.1.1",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"graphql": "^15.4.0",
"graphql-schema-linter": "^3.0.1",
"mocha": "^9.2.2",
"prettier": "^2.2.1",
"rollup": "^2.34.2",
"rollup-plugin-multi-input": "^1.1.1",
"semantic-release": "^19.0.2",
"ts-node": "^10.8.0",
"tslib": "^2.0.3",
"typescript": "^4.1.2"
}
}