-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "@curiouslearning/features",
"version": "1.0.0",
"description": "A wrapper for feature flags and experiments.",
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/src/index.d.ts"
},
"./dist/index.d.ts": "./dist/index.d.ts"
},
"files": [
"README.md",
"dist"
],
"scripts": {
"build": "webpack",
"build:esm": "tsc -p tsconfig.esm.json",
"test": "jest",
"test:local": "jest --collectCoverage=false"
},
"author": "curiouslearning",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.2",
"@types/webpack": "^5.28.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"declaration-bundler-webpack-plugin": "^1.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"terser-webpack-plugin": "^5.3.11",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1",
"wepack-cli": "^0.0.1-security"
},
"dependencies": {
"@statsig/js-client": "^3.12.0"
}
}