-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 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
{
"name": "react-tinymce-input",
"version": "2.1.0",
"description": "A React component to control TinyMCE.",
"main": "dist/TinyMCEInput.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./scripts/build",
"prepublish": "npm run-script build",
"dev": "webpack-dev-server --progress --colors --port 8090"
},
"repository": {
"type": "git",
"url": "https://github.com/HurricaneJames/react-tinymce-input.git"
},
"keywords": [
"react",
"tinymce"
],
"author": "James Burnett <HurricaneJamesEsq@gmail.com> (https://github.com/HurricaneJames/react-tinymce-input)",
"license": "MIT",
"bugs": {
"url": "https://github.com/HurricaneJames/react-tinymce-input/issues"
},
"homepage": "https://github.com/HurricaneJames/react-tinymce-input",
"dependencies": {
"uuid": "^2.0.1"
},
"devDependencies": {
"babel": "^5.4.7",
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.11",
"babel-loader": "^5.1.3",
"babel-runtime": "^5.5.4",
"create-react-class": "^15.6.0",
"eslint": "^0.22.1",
"eslint-plugin-react": "^2.5.0",
"node-libs-browser": "^0.5.2",
"react": "~15.6.1",
"react-dom": "~15.6.1",
"prop-types": "^15.5.10",
"react-hot-loader": "^1.3.1",
"webpack": "^1.9.10",
"webpack-dev-server": "^1.9.0"
},
"peerDependencies": {
"react": "^0.13 || ^0.14 || ^15.x"
}
}