-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.68 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
67
68
69
70
{
"name": "graphql-nats-subscriptions",
"version": "1.4.2",
"description": "",
"main": "dist/index.js",
"scripts": {
"jest": "./node_modules/.bin/jest",
"test": "jest",
"test:debug": "npm test -- --runInBand",
"test:watch": "npm test -- --watch",
"build": "tsc",
"build:debug": "tsc --pretty",
"build:prod": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdmbase/graphql-nats-subscriptions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/cdmbase/graphql-nats-subscriptions/issues"
},
"homepage": "https://github.com/cdmbase/graphql-nats-subscriptions#readme",
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*test*\\.(ts|tsx|js)$"
},
"dependencies": {
"lodash": "^4.0.0"
},
"peerDependencies": {
"@cdm-logger/core": "^6.0.0",
"graphql-subscriptions": "^1.1.0",
"nats": ">=1.2.0"
},
"devDependencies": {
"@cdm-logger/server": "^6.0.0",
"@types/graphql": "^14.2.0",
"@types/jest": "^21.1.2",
"@types/node": "11.13.1",
"graphql": "^14.0.0",
"graphql-subscriptions": "^1.1.0",
"nats": "^1.2.10",
"iterall": "^1.2.2",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"simple-mock": "^0.8.0",
"ts-jest": "^29.0.3",
"ts-node": "^3.3.0",
"tslint": "^5.11.0",
"typescript": "3.4.3"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}