-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.35 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
78
79
{
"name": "statsig-js",
"version": "5.1.0",
"description": "Statsig JavaScript client SDK for single user environments.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "rm -rf build/ && rm -rf dist/ && genversion --semi src/SDKVersion.ts --es6 && tsc && webpack",
"postbuild": "rm -rf build/**/*.map",
"test": "jest --config=jest-debug.config.js",
"testForGithubOrRedisEnthusiasts": "jest",
"test:watch": "jest --watch",
"build:dryrun": "npx tsc --noEmit",
"types": "npx tsc",
"lint": "eslint '*/**/*.{ts,tsx}' --fix --max-warnings 70 --cache --cache-strategy content && git status",
"lint:github": "eslint '*/**/*.{ts,tsx}' --max-warnings 70 --cache --cache-strategy content && git status"
},
"files": [
"build/statsig-prod-web-sdk.js",
"dist/*.js",
"dist/*.d.ts",
"dist/utils/*.js",
"dist/utils/*.d.ts"
],
"jsdelivr": "build/statsig-prod-web-sdk.js",
"repository": {
"type": "git",
"url": "git+https://github.com/statsig-io/js-client-sdk.git"
},
"author": "Statsig, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/statsig-io/js-client-sdk/issues"
},
"keywords": [
"feature gate",
"feature flag",
"continuous deployment",
"ci",
"ab test"
],
"homepage": "https://www.statsig.com",
"devDependencies": {
"@babel/preset-env": "^7.14.9",
"@babel/preset-typescript": "^7.14.5",
"@types/jest": "^27.1.0",
"@types/node": "^18.15.10",
"@types/uuid": "^9.0.1",
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"circular-dependency-plugin": "^5.2.2",
"core-js": "^3.16.4",
"eslint": "^8.41.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-statsig-linter": "file:./custom_eslint",
"genversion": "^3.1.1",
"jest": "^27.1.0",
"prettier": "^3.1.1",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.1.0",
"ts-loader": "^9.2.3",
"typescript": "^4.2.2",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"js-sha256": "^0.11.0",
"uuid": "^9.0.1"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}