-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
74 lines (74 loc) · 1.89 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
{
"name": "react-easy-edit",
"version": "2.0.0",
"description": "A react library for inline editing components",
"keywords": [
"content editable",
"contenteditable",
"edit",
"editable",
"editable content",
"editable text",
"easy edit",
"react-easy-edit",
"react easy edit",
"inline",
"inline edit",
"input",
"react",
"reactjs",
"text"
],
"author": "George Artemiou <[email protected]>",
"license": "MIT",
"scripts": {
"start": "react-scripts start",
"build": "rollup -c -o build/react-easy-edit.min.js",
"test": "react-scripts test",
"coverage": "react-scripts test --coverage --watchAll=false",
"prepublish": "yarn build"
},
"main": "build/react-easy-edit.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/giorgosart/react-easy-edit"
},
"bugs": {
"url": "https://github.com/giorgosart/react-easy-edit/issues"
},
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"@rollup/plugin-babel": "^5.3.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@zarconontol/enzyme-adapter-react-18": "^0.7.3",
"enzyme": "3.11.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^8.0.1",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"rollup": "^2.79.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2"
}
}