-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "floodgate-node-sdk",
"version": "1.2.0",
"description": "Node SDK for floodgate.io",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npx mocha --require ts-node/register tests/**/*.ts --exit --timeout 25000",
"transform": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/floodgate-io/node-sdk.git"
},
"keywords": [
"floodgate",
"feature flag",
"feature toggle",
"soft launch",
"remote config",
"canary release",
"remote management"
],
"author": "FloodGate",
"license": "MIT",
"bugs": {
"url": "https://github.com/floodgate-io/javascript-sdk/issues"
},
"homepage": "https://github.com/floodgate-io/javascript-sdk#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"chai": "^4.2.0",
"mocha": "^7.1.1",
"ts-loader": "^6.2.0",
"ts-node": "^8.8.2",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/mocha": "^7.0.2",
"@types/node-cache": "^4.1.3",
"@types/node-fetch": "^2.5.2",
"events": "^3.0.0",
"js-sha1": "^0.6.0",
"node-cache": "^4.2.1",
"node-fetch": "^2.6.0"
}
}