-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 2.33 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
{
"name": "launchdarkly-node-client-sdk",
"version": "3.3.0",
"description": "LaunchDarkly Client-Side SDK for Node.js",
"author": "LaunchDarkly <team@launchdarkly.com>",
"license": "Apache-2.0",
"keywords": [
"launchdarkly",
"analytics",
"client"
],
"types": "./typings.d.ts",
"main": "src/index.js",
"scripts": {
"lint": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore",
"lint:all": "eslint --format 'node_modules/eslint-formatter-pretty' --ignore-path .eslintignore src",
"test": "jest --ci",
"check-typescript": "node_modules/typescript/bin/tsc",
"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/main/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",
"doc": "typedoc"
},
"engines": {
"node": ">= 12.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@types/node": "^12.12.6",
"@babel/eslint-parser": "7.19.1",
"babel-jest": "^29.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.42.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.1",
"jest-junit": "^14.0.1",
"launchdarkly-js-test-helpers": "1.2.1",
"prettier": "2.7.1",
"typescript": "~5.4.5",
"typedoc": "^0.25.13"
},
"jest": {
"rootDir": "src",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/**/*-test.js"
],
"testResultsProcessor": "jest-junit",
"transform": {
"^.+\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"jest-junit": {
"outputDirectory": "./reports/junit",
"outputName": "junit.xml"
},
"dependencies": {
"launchdarkly-eventsource": "2.0.3",
"launchdarkly-js-sdk-common": "5.4.0",
"node-localstorage": "^1.3.1"
},
"repository": {
"type": "git",
"url": "git://github.com/launchdarkly/node-client-sdk.git"
}
}