-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.23 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
{
"name": "@uptechworks/uptech-growthbook-sdk-typescript",
"version": "0.2.1",
"description": "A thin wrapper around GrowthBook's Javascript SDK to support automated testing",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"publish": "tsc && npm publish",
"test": "jest",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:lastChanged": "jest --changedFilesWithAncestor",
"test:lastChanged:bail": "jest --bail --changedFilesWithAncestor",
"test:bail": "jest --bail=1 src/",
"test:cov": "jest --coverage",
"test:cov:bail": "jest --coverage --bail=1 src/ && lcov --remove coverage/lcov.info 'src/models/*' -o coverage/lcov.info",
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-typescript": "^7.16.5",
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@growthbook/growthbook": "^0.21.1",
"cross-fetch": "^3.1.5"
}
}