This repository has been archived by the owner on Oct 11, 2022. It is now read-only.
forked from ngs/draft-js-markdown-shortcuts-plugin
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
112 lines (112 loc) · 3.66 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
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
105
106
107
108
109
110
111
112
{
"name": "draft-js-markdown-plugin",
"version": "3.0.5",
"description": "A DraftJS plugin for supporting Markdown syntax shortcuts, fork of draft-js-markdown-shortcuts-plugin",
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && npm run build:js",
"build:demo": "NODE_ENV=production webpack --config demo/webpack.config.prod.js && rm -rf demo/public/css && cp -R demo/publicTemplate/* demo/public/",
"build:js": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production NODE_ENV=production node_modules/.bin/babel --out-dir='lib' --ignore='**/__test__/*' src",
"clean": "node_modules/.bin/rimraf lib; node_modules/.bin/rimraf demo/public",
"dev": "node_modules/.bin/babel-node ./demo/server.js",
"test": "jest",
"precommit": "jest && lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/withspectrum/draft-js-markdown-plugin.git"
},
"keywords": [
"draftjs",
"editor",
"plugin",
"markdown"
],
"author": "Max Stoiber <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/withspectrum/draft-js-markdown-plugin/issues"
},
"homepage": "https://github.com/withspectrum/draft-js-markdown-plugin#readme",
"lint-staged": {
"*.{js,css}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-rewire": "^1.2.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.16.0",
"cheerio": "^0.22.0",
"coveralls": "^2.13.3",
"css-loader": "^0.26.0",
"css-modules-require-hook": "^4.2.3",
"draft-js-plugins-editor": "2.0.0-rc2",
"draft-js-prism": "ngs/draft-js-prism#6edb31c3805dd1de3fb897cc27fced6bac1bafbb",
"enzyme": "^2.6.0",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-mocha": "^4.12.1",
"eslint-plugin-react": "^6.7.1",
"express": "^4.16.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"flow-bin": "^0.36.0",
"history": "^2.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jsdom": "^9.8.3",
"lint-staged": "^4.3.0",
"mocha": "^3.2.0",
"mocha-junit-reporter": "^1.18.0",
"mocha-multi-reporters": "^1.1.7",
"npm-watch": "^0.1.6",
"nyc": "^10.0.0",
"postcss-loader": "^1.1.1",
"prettier": "^1.14.3",
"prismjs": "^1.15.0",
"raf": "^3.4.1",
"react": "16.2.x",
"react-addons-pure-render-mixin": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "16.2.0",
"react-github-corner": "^2.3.0",
"react-github-fork-ribbon": "^0.4.4",
"react-test-renderer": "^16.6.0",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"static-site-generator-webpack-plugin": "^3.1.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.12.2",
"webpack-hot-middleware": "^2.24.3"
},
"peerDependencies": {
"draft-js-plugins-editor": "~2.0.0-rc.1 || 2.0.0-rc2 || 2.0.0-rc1 || 2.0.0-beta12",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"contributors": [
"Atsushi Nagase <[email protected]>"
],
"dependencies": {
"decorate-component-with-props": "^1.1.0",
"draft-js": "^0.10.4",
"draft-js-checkable-list-item": "^2.0.6",
"draft-js-prism-plugin": "^0.1.3",
"immutable": "~3.7.4",
"react-click-outside": "^3.0.1"
}
}