-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "konfigs-sdk",
"version": "0.1.3",
"description": "This packages allows you to connect to konfigs app (https://konfigs.io) and allows you to pull your configs for consumption by your systems.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "jest",
"lint": "eslint . --ext .js",
"lint-fix": "eslint --fix . --ext .js",
"prettier": "prettier --write . --ext .js",
"lint-test": "yarn prettier && yarn lint-fix && yarn test",
"build-docs": "jsdoc index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konfigs/konfigs-js-sdk.git"
},
"keywords": [
"config",
"konfig",
"dynamic configs",
"dynamic configurations",
"feature flag",
"rule engine",
"segmentation",
"Configuration",
"Management",
"CMS",
"nodejs",
"reactjs"
],
"author": "nestorx",
"license": "MIT",
"bugs": {
"url": "https://github.com/konfigs/konfigs-js-sdk/issues"
},
"homepage": "https://github.com/konfigs/konfigs-js-sdk",
"dependencies": {
"cross-fetch": "^3.1.5",
"jest": "^27.5.1",
"jsdoc": "^3.6.10"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^27.5.1",
"eslint": "^8.12.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jest": "^26.1.3",
"prettier": "2.6.1"
}
}