-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.71 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "react-editor-quill",
"version": "0.1.10",
"description": "A Quill editor component for React.",
"main": "./lib/index.js",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "NODE_ENV=test karma start",
"test:full": "npm-run-all -p 'test -- --single-run' lint",
"watch": "babel src -d lib -w",
"demo": "scripts/dev-examples",
"start": "concurrently --kill-others \"npm run watch\" \"npm run demo\"",
"prebuild": "rimraf lib dist",
"build": "babel src -d lib && scripts/build",
"docs": "npm-run-all docs:*",
"docs-dev": "npm-run-all docs:clean docs:prepare docs:build:watch",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "gitbook build -g rxfe/react-editor-quill",
"docs:build:watch": "gitbook serve",
"docs:publish": "cd _book && git init && git commit --allow-empty -m 'update book' && git checkout gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push git@github.com:rxfe/react-editor-quill.git gh-pages --force",
"demo:publish": "webpack && cd examples && git init && git commit --allow-empty -m 'update examples' && git checkout gh-pages && touch .nojekyll && git add . && git commit -am 'update examples' && git push git@github.com:ChasHong/react-editor-quill-demo.git gh-pages --force",
"lint": "eslint src/ specs/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rxfe/react-editor-quill.git"
},
"author": "wencaicc@gmail.com",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.7.4",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.18.0",
"codeclimate-test-reporter": "^0.4.0",
"concurrently": "^3.5.0",
"coveralls": "^2.11.15",
"css-loader": "^0.28.4",
"envify": "^3.4.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2 || ^4.0.0",
"eslint-plugin-react": "^6.9.0",
"expect": "1.10.0",
"gitbook-cli": "^2.3.0",
"istanbul-instrumenter-loader": "0.2.0",
"karma": "^1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"mocha": "3.2.0",
"npm-run-all": "^3.1.2",
"quill": "^1.2.0",
"react": "^15.0.0",
"react-addons-test-utils": "^15.0.0",
"react-dom": "^15.0.0",
"rf-release": "0.4.0",
"rimraf": "^2.5.4",
"sinon": "next",
"style-loader": "^0.18.2",
"uglify-js": "2.4.24",
"webpack": "^1.12.14",
"webpack-dev-server": "1.11.0"
},
"dependencies": {
"classnames": "^2.2.5",
"gitbook-plugin-anchorjs": "^1.1.1",
"gitbook-plugin-codepen": "^0.1.2",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.2.0",
"lodash": "^4.17.4",
"lodash.isequal": "^4.5.0",
"lodash.some": "^4.6.0",
"prop-types": "^15.5.10"
},
"peerDependencies": {
"quill": "^1.2.0",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rxfe/react-editor-quill/issues"
},
"homepage": "https://github.com/rxfe/react-editor-quill#readme"}