forked from LoicMahieu/aor-tinymce-input
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.42 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
{
"name": "ra-tinymce-input",
"version": "1.2.3",
"description": "<TinyMCEInput /> component for react-admin, useful for editing HTML in admin GUIs",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production babel ./src -d lib"
},
"files": [
"LICENSE",
"*.md",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Whitebolt/ra-tinymce-input.git"
},
"keywords": [
"reactjs",
"react",
"rest",
"html",
"editor",
"tinymce",
"react-admin"
],
"author": "Whitebolt <[email protected]",
"contributors": [
{
"name": "Loic Mahieu"
},
{
"name": "Stephen Simpson",
"email": "[email protected]"
},
{
"name": "Kristjan Allikas",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Whitebolt/ra-tinymce-input/issues"
},
"homepage": "https://github.com/Whitebolt/ra-tinymce-input#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0"
},
"dependencies": {
"react-tinymce": "^0.7.0",
"react": "^0.14.0 || ^15.0.0 || ^16.0.0",
"tinymce": "^4.7.13"
}
}