-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
75 lines (75 loc) · 1.98 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
{
"name": "react-markdown-editor",
"version": "1.0.0",
"description": "A markdown editor with preview, implemented with React.js and Reflux",
"main": "dist/react-markdown-editor.js",
"scripts": {
"prepublish": "./scripts/prepublish.sh",
"test": "./node_modules/jest-cli/bin/jest.js --coverage"
},
"keywords": [
"react-component",
"markdown",
"react",
"editor",
"preview",
"text"
],
"author": "Jeremy Dagorn <jeremy.dagorn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jrm2k6/react-markdown-editor/issues",
"email": "jeremy.dagorn@gmail.com"
},
"jest": {
"transform": {
".*": "./scripts/preprocessor.js"
},
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/reflux",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-tools",
"<rootDir>/node_modules/enzyme"
],
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "https://github.com/jrm2k6/react-markdown-editor.git"
},
"dependencies": {
"create-react-class": "^15.6.3",
"markdown": "^0.5.0",
"object-assign": "^4.1.0",
"prop-types": "^15.6.1",
"reflux": "^6.4.0"
},
"peerDependencies": {
"react": ">=15.1.0",
"react-dom": ">=15.1.0"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-plugin-transform-react-jsx": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"codeclimate-test-reporter": "0.0.4",
"console": "^0.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"expect": "^1.20.1",
"expect-jsx": "^2.6.0",
"jest": "^0.1.40",
"jest-cli": "^17.0.3",
"mocha": "^2.5.3",
"react": ">=15.1.0",
"react-dom": ">=15.1.0",
"react-test-renderer": "^16.2.0",
"react-tools": "^0.13.3",
"webpack": "2.6.1"
}
}