-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.77 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
{
"name": "@thoughtspot/graph-to-openapi",
"version": "0.9.3",
"description": "Get an OpenAPI 3.0 spec out of a graphql Schema",
"main": "dist/index.js",
"scripts": {
"check": "eslint 'src/**'",
"test": "npm run check; jest",
"debug": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"build": "tsc -p .",
"prepublishOnly": "npm run build; npm test",
"posttest": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtspot/graph-to-openapi.git"
},
"keywords": [
"graphql",
"openapi",
"rest",
"schema"
],
"author": "ashish.shubham@thoughtspot.com",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/thoughtspot/graph-to-openapi/issues"
},
"homepage": "https://github.com/thoughtspot/graph-to-openapi#readme",
"dependencies": {
"@graphql-tools/load": "^7.7.0",
"@graphql-tools/schema": "^8.5.0",
"@graphql-tools/utils": "^8.8.0",
"graphql": "^16.9.0",
"url-join": "^5.0.0"
},
"devDependencies": {
"@graphql-tools/graphql-file-loader": "^7.4.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"coveralls": "^3.1.1",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}