forked from lovasoa/react-contenteditable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 960 Bytes
/
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
{
"name": "react-contenteditable",
"version": "3.3.3",
"description": "React component representing an element with editable contents",
"main": "./lib/react-contenteditable.js",
"types": "./lib/react-contenteditable.d.ts",
"peerDependencies": {
"react": ">=16.3"
},
"author": "Ophir LOJKINE (original code posted by Sebastien Lorber on stackoverflow)",
"license": " Apache-2.0",
"keywords": [
"react-component",
"contenteditable",
"editable",
"html",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/lovasoa/react-contenteditable.git"
},
"devDependencies": {
"@types/react": "^16.9.31",
"react": "^16.13.1",
"typescript": "^3.8.3"
},
"scripts": {
"compile": "tsc",
"test": "npm run compile && cd tests && npm install && npm test",
"prepare": "npm run compile"
},
"dependencies": {
"prop-types": "^15.7.1",
"fast-deep-equal": "^2.0.1"
}
}