forked from lovasoa/react-contenteditable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 977 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
38
39
40
41
42
{
"name": "react-contenteditable",
"version": "2.0.4",
"description": "React component representing a <div> with editable contents",
"main": "./lib/react-contenteditable.js",
"peerDependencies": {
"react": ">=0.13"
},
"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": {
"babel-cli": ">=6",
"babel-plugin-add-module-exports": ">=0",
"babel-preset-es2015": ">=6",
"babel-preset-stage-0": "^6.5.0",
"react": "^15.2.1"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports"
]
},
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile"
}
}