-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.38 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
{
"name": "@featbit/js-client-sdk",
"version": "3.0.8",
"description": "https://github.com/featbit/featbit-js-client-sdk",
"main": "./dist/esm/index.js",
"module": "./dist/esm/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"prebuild": "node -p \"'export const version = \\\"' + require('./package.json').version + '\\\"; export const name = \\\"' + require('./package.json').name + '\\\";'\" > src/version.ts",
"build": "rimraf dist && rimraf examples/web-app/umd && tsc -p tsconfig.json && webpack --mode production",
"test": "npx jest --ci",
"test-coverage": "npx jest --ci --coverage",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/featbit/featbit-js-client-sdk.git"
},
"keywords": [
"featbit",
"client sdk",
"feature flags",
"feature management"
],
"author": "featbit.co",
"license": "MIT",
"bugs": {
"url": "https://github.com/featbit/featbit-js-client-sdk/issues"
},
"homepage": "https://github.com/featbit/featbit-js-client-sdk#readme",
"devDependencies": {
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rimraf": "^5.0.5",
"string-replace-loader": "^3.1.0",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"typescript": "^5.2.2",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
}
}