forked from launchdarkly/node-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.18 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
{
"name": "launchdarkly-node-server-sdk",
"version": "7.0.1",
"description": "LaunchDarkly Server-Side SDK for Node.js",
"main": "index.js",
"scripts": {
"test": "jest --ci --coverage --runInBand",
"check-typescript": "node_modules/typescript/bin/tsc",
"lint": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore .",
"lint-fix": "eslint --fix --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore .",
"contract-test-service": "npm --prefix contract-tests install && npm --prefix contract-tests start",
"contract-test-harness": "curl -s https://raw.githubusercontent.com/launchdarkly/sdk-test-harness/master/downloader/run.sh \\ | VERSION=v2 PARAMS=\"-url http://localhost:8000 -debug -stop-service-at-end $TEST_HARNESS_PARAMS\" sh",
"contract-tests": "npm run contract-test-service & npm run contract-test-harness"
},
"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": {
"async": "^3.2.4",
"launchdarkly-eventsource": "1.4.4",
"lru-cache": "^6.0.0",
"node-cache": "^5.1.0",
"semver": "^7.3.0",
"tunnel": "0.0.6",
"uuid": "^8.3.2"
},
"engines": {
"node": ">= 10.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@types/jest": "^27.4.0",
"@types/node": "^15.12.2",
"babel-jest": "^27.0.2",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.4",
"jest-junit": "^12.2.0",
"launchdarkly-js-test-helpers": "^2.2.0",
"prettier": "^2.3.1",
"tmp": "^0.2.1",
"typescript": "~4.4.4",
"yaml": "^1.10.2"
},
"jest": {
"rootDir": ".",
"testEnvironment": "node",
"testMatch": [
"**/*-test.js"
],
"testResultsProcessor": "jest-junit"
}
}