-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-editor-component",
"version": "1.0.2",
"author": "nextthought",
"description": "A Rich Text Editor for ReactJS",
"main": "./lib/index.js",
"files": [
"lib"
],
"engines": {
"node": ">=5.0.0",
"npm": ">=3.3.0"
},
"scripts": {
"test": "karma start --single-run --reporters dots,html,junit,coverage",
"start": "make check && webpack-dev-server -d --config ./webpack.config.test.js --host 0.0.0.0 --port 8000 --watch --progress --inline --info false --content-base ./tests/app/ || true",
"prepublish": "not-in-install && make || in-install",
"bump": "npm version",
"postbump": "git push --all && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/NextThought/react-editor-component.git"
},
"keywords": [
"react",
"rte",
"rich",
"text",
"editor",
"component"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/NextThought/react-editor-component/issues"
},
"homepage": "https://github.com/NextThought/react-editor-component",
"dependencies": {
"babel-runtime": "^6.5.0",
"classnames": "^2.0.0",
"debug": "^2.2.0"
},
"devDependencies": {
"babel-core": "^6.1.0",
"babel-eslint": "^6.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-transform-runtime": "^6.1.0",
"babel-polyfill": "^6.1.0",
"babel-preset-es2015": "^6.1.0",
"babel-preset-react": "^6.1.0",
"babel-preset-stage-2": "^6.1.0",
"eslint": "^2.2.0",
"eslint-plugin-react": "^4.0.0",
"in-publish": "^2.0.0",
"isparta-instrumenter-loader": "^1.0.0",
"jasmine-core": "^2.2.0",
"karma": "^0.13.15",
"karma-coverage": "^0.5.3",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^0.3.5",
"karma-junit-reporter": "^0.3.8",
"karma-mocha-reporter": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-script-launcher": "^0.1.0",
"karma-sourcemap-loader": "^0.3.4",
"karma-webpack": "^1.5.0",
"phantomjs-prebuilt": ">=1.9",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"webpack": "^1.8.4",
"webpack-dev-server": "^1.8.0"
}
}