-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1002 Bytes
/
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
{
"name": "draft-js-regex-highlighter-plugin",
"version": "1.1.2",
"description": "Draft.js plugin for styling valid/invalid content based on regex matches",
"main": "dist/index.js",
"scripts": {
"build": "BABEL_ENV=production babel --out-dir='dist' src",
"prepublish": "npm run build"
},
"author": "Steve Chester",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/schester44/draft-js-regex-highlighter-plugin.git"
},
"bugs": {
"url": "https://github.com/schester44/draft-js-regex-highlighter-plugin/issues"
},
"homepage": "https://github.com/schester44/draft-js-regex-highlighter-plugin#readme",
"peerDependencies": {
"decorate-component-with-props": "^1.1.0",
"draft-js": "^0.10.5",
"react": "^16.3.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1"
}
}