-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.55 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
{
"name": "@thoughtspot/rise",
"version": "0.7.14",
"description": "Rise above the REST with GraphQL",
"main": "dist/index.js",
"scripts": {
"check": "eslint 'src/**'",
"test": "npm run check; jest",
"build": "tsc -p .",
"posttest": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "npm run build; npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thoughtspot/rise.git"
},
"keywords": [
"rest",
"graphql",
"directive"
],
"author": "[email protected]",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/thoughtspot/rise/issues"
},
"homepage": "https://github.com/thoughtspot/rise#readme",
"dependencies": {
"@graphql-tools/schema": "^9.0.4",
"@graphql-tools/utils": "^8.12.0",
"form-data": "^4.0.0",
"graphql": "16.9",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/lodash": "^4.14.185",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-jest": "^29.1.2",
"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",
"nock": "^13.2.9",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"types": "dist/index.d.ts"
}