-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.93 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
{
"name": "@lifechurch/react-draftable",
"version": "0.0.0-development",
"description": "A simple, customizable rich text editor built on Draft.js",
"main": "dist/react-draftable.cjs.js",
"module": "dist/react-draftable.esm.js",
"browser": "dist/react-draftable.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && yarn build:rollup",
"build:rollup": "BABEL_ENV=production rollup -c",
"clean": "rimraf dist",
"commit": "git-cz",
"flow": "flow",
"lint": "eslint --ext .jsx,.js src/",
"test": "jest",
"test:coverage": "jest --collect-coverage",
"semantic-release": "semantic-release",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"validate": "yarn test:coverage && yarn flow && yarn lint"
},
"repository": {
"type": "git",
"url": "https://github.com/lifechurch/react-draftable.git"
},
"keywords": [
"react",
"draftjs",
"contenteditable",
"wysiwyg",
"richtext"
],
"author": "Michael Haglund <[email protected]>",
"license": "MIT",
"dependencies": {
"draft-js-export-html": "^1.3.3",
"draft-js-export-markdown": "^1.3.3",
"draft-js-import-html": "^1.3.3",
"draft-js-import-markdown": "^1.3.3",
"immutable": "^3.8.2"
},
"peerDependencies": {
"draft-js": "x.10.x | x.11.X",
"react": "16.x.x",
"react-dom": "16.x.x"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-jsx-remove-data-test-id": "^2.0.0",
"commitizen": "^3.1.1",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "2.1.0",
"draft-js": "^0.11.0-beta2",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-flowtype": "^3.9.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"flow-bin": "^0.98.1",
"jest": "^24.8.0",
"jest-transform-stub": "^2.0.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-testing-library": "^7.0.1",
"rimraf": "^2.6.3",
"rollup": "^1.12.5",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-css-only": "^1.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"semantic-release": "^15.13.12",
"sinon": "^7.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}