-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
{
"name": "graphql-info-inspector",
"version": "1.0.0",
"description": "A toolkit for working with GraphQLResolveInfo objects.",
"keywords": [
"graphql",
"graphqlresolveinfo",
"graphqljs",
"info",
"resolveinfo"
],
"author": "Equalogic Ltd",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/equalogic/graphql-info-inspector",
"repository": {
"type": "git",
"url": "https://github.com/equalogic/graphql-info-inspector.git"
},
"scripts": {
"prebuild": "rimraf dist && npm run barrels:generate",
"build": "tsc -p tsconfig.build.json",
"postbuild": "cp package.json README.md dist/",
"format": "prettier --write .",
"lint": "eslint --ext .ts --ignore-path .gitignore .",
"lint:fix": "eslint --ext .ts --ignore-path .gitignore . --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "rimraf test/.results && mkdirp test/.results && jest --ci --runInBand",
"postversion": "npm run postbuild",
"release": "np",
"barrels:generate": "barrelsby --config barrelsby.json"
},
"peerDependencies": {
"graphql": ">=14.6.0"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "29.2.0",
"@types/node": "18.19.60",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"barrelsby": "2.8.1",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "3.5.2",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"graphql": "15.9.0",
"jest": "29.2.2",
"mkdirp": "3.0.1",
"np": "8.0.4",
"prettier": "2.8.8",
"ts-jest": "29.0.3",
"typescript": "5.6.3"
},
"jest-junit": {
"outputDirectory": "./test/.results",
"outputName": "junit.xml"
},
"main": "index.js",
"types": "index.d.ts"
}