forked from launchdarkly/node-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.45 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
{
"name": "launchdarkly-node-server-sdk",
"version": "5.9.0",
"description": "LaunchDarkly Server-Side SDK for Node.js",
"main": "index.js",
"scripts": {
"test": "jest --ci --forceExit",
"check-typescript": "node_modules/typescript/bin/tsc"
},
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/launchdarkly/node-server-sdk.git"
},
"keywords": [
"launchdarkly",
"analytics",
"client"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/launchdarkly/node-server-sdk/issues"
},
"homepage": "https://github.com/launchdarkly/node-server-sdk",
"dependencies": {
"@types/redis": "2.8.6",
"async": "2.6.0",
"hoek": "4.2.1",
"lrucache": "^1.0.3",
"node-cache": "^3.2.1",
"node-sha1": "0.0.1",
"redis": "^2.6.0-2",
"request": "2.88.0",
"request-etag": "^2.0.3",
"semver": "5.5.0",
"tunnel": "0.0.6",
"winston": "2.4.1",
"yaml": "1.0.1"
},
"engines": {
"node": ">= 0.8.x"
},
"devDependencies": {
"@babel/core": "7.4.3",
"@babel/preset-env": "7.4.3",
"babel-jest": "24.7.1",
"jest": "24.7.1",
"jest-junit": "6.3.0",
"nock": "9.2.3",
"selfsigned": "1.10.4",
"tmp": "0.0.33",
"typedoc": "0.14.2",
"typescript": "3.0.1"
},
"jest": {
"rootDir": ".",
"testEnvironment": "node",
"testMatch": [
"**/*-test.js"
],
"testResultsProcessor": "jest-junit"
}
}