-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "react-cmirror",
"version": "1.4.2",
"description": "Codemirror Component for React.js, all Codemirror options and event are supported.",
"main": "./dist/react-cmirror.min.js",
"scripts": {
"start": "webpack-dev-server --open",
"build": "npm run lint && webpack --config webpack.config.prod.js",
"lint": "eslint --ext .jsx src --fix",
"commit": "git add . && git commit -m \"deploy\" && git push",
"deploy": "npm run build && npm run commit && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZiQiangWang/react-cmirror.git"
},
"keywords": [
"react",
"codemirror",
"component",
"options",
"events"
],
"author": "wangziqiang",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZiQiangWang/react-cmirror/issues"
},
"homepage": "https://github.com/ZiQiangWang/react-cmirror#readme",
"dependencies": {
"codemirror": "^5.38.0"
},
"peerDependencies": {
"prop-types": ">=15.5.10",
"react": ">=15.6.1",
"react-dom": ">=15.6.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.9.1",
"html-webpack-plugin": "^3.2.0",
"style-loader": "^0.18.2",
"webpack": "^4.11.0",
"webpack-cli": "^3.0.2",
"webpack-dev-server": "^3.1.4"
}
}