-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.02 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
77
{
"name": "configdn-js",
"version": "0.3.4",
"description": "ConfigDN lets you change configuration settings without deploying new code.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "lib/esm/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.cjs.json && tsc -p tsconfig.build.esm.json && gulp tsc",
"build:pure": "webpack && gulp webpack",
"prepare": "npm run build && npm run build:pure"
},
"keywords": [
"configdn",
"config",
"configuration",
"remote configuration",
"configdn client",
"feature flags",
"feature toggle",
"feature switch"
],
"author": "ConfigDN",
"contributors": [
{
"name": "dBuidl Limited",
"url": "https://dbuidl.com"
},
{
"name": "ConfigCat",
"url": "https://configcat.com"
}
],
"license": "MIT",
"homepage": "https://configdn.com",
"dependencies": {
"axios": "^1.6.8",
"tslib": "^2.6.1"
},
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@ephesoft/webpack.istanbul.loader": "^2.2.0",
"@types/chai": "4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"babel-loader": "^9.1.0",
"chai": "^4.3.7",
"core-js": "^3.24.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"gulp": "^4.0.2",
"gulp-replace": "^1.1.3",
"gulp-typescript": "^6.0.0-alpha.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-safari-launcher": "^1.0.0",
"ts-loader": "^9.3.1",
"typescript": "^5.1.6",
"webpack": "^5.77.0",
"webpack-auto-inject-version": "^1.2.2",
"webpack-cli": "^4.10.0"
},
"overrides": {
"chokidar": "3.5.3",
"glob-parent": "5.1.2",
"loader-utils": "1.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/dBuidl/ConfigDN-client-js"
},
"sideEffects": false
}