-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.64 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
80
81
82
83
84
85
86
{
"name": "featureprobe-client-sdk-react",
"version": "2.2.0",
"description": "FeatureProbe Client Side SDK for React",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"unpkg": "./dist/featureprobe-client-sdk-react.min.js",
"jsdelivr": "./dist/featureprobe-client-sdk-react.min.js",
"files": [
"dist"
],
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"build": "npm run build:ts && npm run build:web",
"build:ts": "tsc",
"build:web": "rollup -c rollup.config.js",
"clean": "node tools/cleanup",
"package": "npm run build && npm pack",
"test": "jest --no-cache --runInBand",
"test:cov": "jest --coverage --no-cache --runInBand",
"addscope": "node tools/packagejson name featureprobe-client-sdk-react",
"doc": "typedoc"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"featureprobe",
"sdk",
"feature management",
"feature toggle"
],
"license": "Apache-2.0",
"homepage": "https://github.com/FeatureProbe/client-sdk-react",
"repository": {
"type": "git",
"url": "[email protected]:FeatureProbe/client-sdk-react.git"
},
"bugs": {
"url": "https://github.com/FeatureProbe/client-sdk-react/issues"
},
"dependencies": {
"featureprobe-client-sdk-js": "^2.2.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^13.1.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^8.3.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@types/eslint": "^8.4.2",
"@types/estree": "^0.0.51",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"jest-fetch-mock": "^3.0.3",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"rollup": "^2.70.2",
"rollup-plugin-babel-minify": "^10.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-typescript2": "^0.31.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"typedoc": "^0.23.10",
"typescript": "^4.6.3"
}
}