forked from feedback-fish/feedback-fish-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 KB
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
{
"name": "@feedback-fish/react",
"version": "1.2.1",
"private": false,
"description": "Embed the Feedback Fish widget into your React app to collect user feedback.",
"homepage": "https://feedback.fish",
"bugs": "https://github.com/ruendchengang/feedback-fish-react/issues",
"repository": "https://github.com/ruendchengang/feedback-fish-react",
"license": "MIT",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"main": "dist/feedback-fish.js",
"module": "dist/feedback-fish.module.js",
"unpkg": "dist/feedback-fish.umd.js",
"scripts": {
"prepare": "yarn run build",
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest"
},
"files": [
"dist",
"src",
"tsconfig.json"
],
"devDependencies": {
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@types/jest": "^26.0.14",
"@types/react": "^16.9.49",
"babel-jest": "^26.3.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"microbundle": "^0.12.3",
"prettier": "2.1.2",
"pretty-quick": "^3.0.2",
"react": "^16.8.0",
"react-dom": "^16.13.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.8.0"
},
"engines": {
"node": ">=10.16.0"
}
}