-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
68 lines (68 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
{
"name": "statsig-node",
"version": "6.0.1",
"description": "Statsig Node.js SDK for usage in multi-user server environments.",
"main": "dist/index.js",
"scripts": {
"prepare": "rm -rf dist/ && tsc",
"test": "npm run prepare && jest",
"docs": "jsdoc2md src/index.js src/typedefs.js src/DynamicConfig.js > docs/generated.md",
"lint": "eslint '*/**/*.{ts,tsx}' --fix --max-warnings 0 --cache --cache-strategy content && git status",
"lint:github": "eslint '*/**/*.{ts,tsx}' --max-warnings 100 --cache --cache-strategy content"
},
"keywords": [
"feature gate",
"feature flag",
"continuous deployment",
"ci",
"ab test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/statsig-io/node-js-server-sdk.git"
},
"author": "Statsig, Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/statsig-io/node-js-server-sdk/issues"
},
"homepage": "https://www.statsig.com",
"dependencies": {
"ip3country": "^5.0.0",
"node-fetch": "^2.6.13",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^26.0.24",
"@types/node": "^14.18.26",
"@types/node-fetch": "^2.6.2",
"@types/sha.js": "^2.4.0",
"@types/ua-parser-js": "^0.7.36",
"@types/useragent": "^2.3.1",
"@types/uuid": "^8.3.4",
"@types/whatwg-fetch": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-jest": "^29.7.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"sha.js": "^2.4.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdoc-to-markdown": "^7.1.1",
"prettier": "^3.1.1",
"typescript": "^4.7.4"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
}
}