-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.12 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
{
"name": "graphql-express",
"version": "3.0.0",
"description": "Simple GraphQL query builder built on RxJs",
"keywords": [
"GraphQL",
"GraphQlClient",
"SimpleGraphQLClient",
"CancelableGraphQL",
"GraphqlCancelable",
"SimpleGraphqlClient",
"ObservableGraphQL"
],
"main": "src/index.js",
"module": "src/index.js",
"types": "src/index.d.ts",
"scripts": {
"build": "tsc",
"build_watch": "tsc --watch",
"test": "jest --coverage",
"test_watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NikitaDev14/graphql-express.git"
},
"author": "Nikita Babych <[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/NikitaDev14/graphql-express/issues"
},
"homepage": "https://github.com/NikitaDev14/graphql-express#readme",
"peerDependencies": {
"rxjs": "^7.8.1"
},
"dependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.4.4"
}
}