-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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": "ffc-react-client-sdk",
"version": "1.1.5",
"description": "featureflag.co SDK for React",
"keywords": [
"feature-flags.co",
"敏捷开关",
"feature flags"
],
"author": "北京心跳率科技有限公司",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/feature-flags-co/ffc-react-client-sdk"
},
"homepage": "https://github.com/feature-flags-co/ffc-react-client-sdk",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "rimraf lib && tsc",
"lint": "tslint -p tsconfig.json 'src/**/*.ts*'",
"lint:all": "npm run lint",
"check-typescript": "tsc",
"prepublishOnly": "npm run build",
"prettier": "prettier --write 'src/*.@(js|ts|tsx|json|css)'"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@types/enzyme": "^3.10.3",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^27.0.3",
"@types/lodash.camelcase": "^4.3.6",
"@types/prop-types": "^15.7.4",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/react-test-renderer": "^17.0.1",
"@wojtekmaj/enzyme-adapter-react-17": "^0.6.6",
"enzyme": "^3.11.0",
"jest": "^27.4.4",
"jest-environment-jsdom-global": "^3.0.0",
"jest-junit": "^13.0.0",
"prettier": "^1.18.2",
"prop-types": "^15.7.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-test-renderer": "^17.0.2",
"rimraf": "^3.0.0",
"ts-jest": "^27.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.5.3"
},
"dependencies": {
"ffc-js-client-side-sdk": "1.1.5",
"hoist-non-react-statics": "^3.3.2",
"lodash.camelcase": "^4.3.0"
},
"peerDependencies": {
"react": "^16.6.3 || ^17.0.0",
"react-dom": "^16.8.4 || ^17.0.0"
}
}