-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.28 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "save-state",
"version": "1.0.2",
"description": "Use your favourite data store like In-Memory cache, MongoDB, Redis and Elastic without worrying about the internal implementations",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"build": "tsc",
"test": "npm run build && env NODE_ENV=test jest --coverage --env=node --detectOpenHandles",
"codecov": "npm run test && codecov"
},
"author": "Adithya Sathu <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"data",
"store",
"memory",
"mongodb",
"redis",
"elastic",
"in memory",
"query",
"datastore",
"key",
"value",
"database",
"DB",
"data-engine",
"key-value",
"save",
"persist",
"app-state",
"state",
"jest",
"Travis CI",
"Codecov"
],
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/config": "0.0.36",
"@types/elasticsearch": "^5.0.24",
"@types/events": "^3.0.0",
"@types/jest": "^24.0.12",
"@types/js-yaml": "^3.12.3",
"@types/mongodb": "3.0.4",
"@types/node": "^8.0.58",
"@types/redis": "^2.8.0",
"@types/sinon": "^9.0.0",
"@types/sinon-as-promised": "^4.0.13",
"@types/winston": "^2.4.4",
"codecov": "^3.6.5",
"jest": "^24.9.0",
"sinon": "^9.0.1",
"sinon-as-promised": "^4.0.3",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"typescript": "^3.8.3"
},
"dependencies": {
"bluebird": "^3.7.2",
"config": "^3.3.1",
"elasticsearch": "^16.7.1",
"events": "^3.1.0",
"heap-profile": "^0.4.0",
"js-yaml": "^3.13.1",
"mongodb": "^3.5.5",
"node-memwatch": "^1.0.1",
"redis": "^3.0.2",
"winston": "^3.2.1"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"globals": {
"ts-jest": {
"diagnostics": false
}
},
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/",
"/coverage/"
],
"moduleFileExtensions": [
"ts",
"sx",
"js",
"jsx",
"json"
]
}
}