forked from configcat/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.37 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.37 KB
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
{
"name": "configcat-node",
"version": "6.5.5",
"description": "Official ConfigCat SDK to help you access your feature flags from a Node.js application.",
"main": "lib/client.js",
"types": "lib/client.d.ts",
"scripts": {
"test": "nyc mocha --require ts-node/register test/**/*.ts --exit --timeout 30000",
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"configcat",
"config",
"configuration",
"remote configuration",
"configcat client",
"feature flags",
"feature toggle",
"feature switch",
"canary release",
"soft launch",
"release strategy"
],
"author": "ConfigCat",
"license": "MIT",
"homepage": "https://configcat.com",
"dependencies": {
"configcat-common": "^4.4.4",
"got": "^9.6.0",
"tunnel": "0.0.6"
},
"devDependencies": {
"@types/chai": "^4.2.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"chai": "^4.2.0",
"del": "^5.1.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.13",
"ts-node": "^8.3.0",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "https://github.com/configcat/node-sdk"
},
"nyc": {
"extension": [
".ts"
],
"reporter": [
"text-summary",
"html",
"json",
"lcov"
],
"all": true,
"include": [
"src"
]
}
}