-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
75 lines (75 loc) · 2 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-native-draftjs-renderer",
"description": "React Native render for draft.js and react-draft-wysiwyg",
"version": "1.1.1",
"scripts": {
"test": "npm run linter && npm run flow && npm run coverage",
"test-coveralls": "npm test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "jest --coverage",
"test-reset": "jest --updateSnapshot",
"linter": "eslint .",
"flow": "flow",
"flow-stop": "flow stop"
},
"main": "index.js",
"keywords": [
"react-native",
"draft-js",
"react-draft-wysiwyg",
"html",
"draftjs"
],
"author": "aihehuo.com",
"license": "MIT",
"peerDependencies": {
"react": "^15.4.2",
"react-native": "^0.41.2"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "19.0.0",
"babel-preset-react-native": "1.9.1",
"coveralls": "^2.12.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-flow-vars": "^0.5.0",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"eslint-plugin-react-native": "^2.3.1",
"flow-bin": "^0.41.0",
"jest": "19.0.2",
"react": "^15.4.2",
"react-native": "^0.41.2",
"react-test-renderer": "15.4.2"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"/sample/node_modules/"
],
"clearMocks": true,
"coverageDirectory": "./coverage/",
"coverageReporters": [
"lcov",
"text"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/sample/",
"/coverage/"
],
"collectCoverageFrom": [
"**/*.{js,jsx}"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/aihehuo/react-native-draftjs-renderer.git"
},
"bugs": {
"url": "https://github.com/aihehuo/react-native-draftjs-renderer/issues"
},
"homepage": "https://github.com/aihehuo/react-native-draftjs-renderer#readme"
}