forked from bpetetot/react-pell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.19 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
{
"name": "react-pell",
"version": "0.3.0",
"description": "React component wrapping a HTML and Markdown editor based on the wysiwyg pell editor",
"main": "build/index.js",
"repository": "https://github.com/bpetetot/react-pell.git",
"author": "Benjamin Petetot <bpetetot@gmail.com>",
"keywords": [
"react",
"pell",
"editor",
"html",
"markdown",
"wysiwyg"
],
"license": "MIT",
"scripts": {
"lint": "eslint --ext js,jsx src",
"build:editor": "cross-env NODE_ENV=build rollup -c ./config/rollup.editor.js",
"build:markdown": "cross-env NODE_ENV=build rollup -c ./config/rollup.markdown.js",
"build": "npm-run-all --parallel build:*"
},
"prepack": "yarn build",
"dependencies": {
"pell": "git+https://github.com/DeedMob/pell.git",
"showdown": "^1.7.1",
"to-markdown": "^3.1.0"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.6.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.0.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"npm-run-all": "^4.0.2",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^0.5.3",
"rollup-plugin-uglify": "^2.0.1"
},
"babel": {
"presets": [
"es2015-rollup",
"react"
],
"plugins": [
"external-helpers",
"transform-class-properties",
"transform-object-rest-spread"
]
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb"
],
"rules": {
"semi": [
2,
"never"
],
"import/no-extraneous-dependencies": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"react/forbid-prop-types": 0
}
}
}