forked from codeslayer1/react-ckeditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·53 lines (53 loc) · 1.48 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
{
"name": "react-ckeditor-component",
"version": "1.0.7",
"description": "CKEditor component for React",
"keywords": [
"react",
"component",
"ckeditor",
"react-ckeditor",
"ckeditor-library",
"ckeditor-component"
],
"homepage": "https://github.com/codeslayer1/react-ckeditor",
"repository": {
"type": "git",
"url": "https://github.com/codeslayer1/react-ckeditor.git"
},
"maintainers": [
"codeslayer1"
],
"author": "codeslayer1",
"bugs": {
"url": "https://github.com/codeslayer1/react-ckeditor/issues"
},
"licenses": "MIT",
"scripts": {
"prepublish": "babel --out-dir ./lib ./src",
"test": "echo \"Error: no test specified\" && exit 1",
"build-example": "browserify ./example/example.js -o ./example/bundle.js -t [ babelify --presets [ es2015 react ] ]",
"serve-example": "http-server ./example/ -p 8080",
"start": "npm run build-example; npm run serve-example",
"compile": "rimraf lib/* && babel src -d lib"
},
"main": "./lib/index.js",
"devDependencies": {
"react": "^15.4.1",
"react-dom": "^15.4.1",
"http-server": "^0.9.0",
"browserify": "^13.1.1",
"babelify": "^7.3.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-preset-es2015": "^6.9.0",
"prop-types": "^15.5.4",
"rimraf": "^2.5.4"
},
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-react": "^6.16.0",
"babel-runtime": "^6.11.6",
"load-script": "^1.0.0"
}
}