-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
29 lines (29 loc) · 971 Bytes
/
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
{
"name": "react-native-markdown-editor",
"version": "1.0.4",
"main": "lib/main.js",
"scripts": {
"test": "npm run test:prettier && jest",
"prettier-all": "prettier --write --single-quote --jsx-bracket-same-line --trailing-comma all --print-width 100 `find lib -name \"*.js\"`",
"prettier": "prettier --write --single-quote --jsx-bracket-same-line --trailing-comma all --print-width 100",
"test:prettier": "prettier-check --single-quote --jsx-bracket-same-line --trailing-comma all --print-width 100 `find lib -name \"*.js\"`"
},
"dependencies": {
"react-native-markdown-view": "^1.0.0"
},
"peerDependencies": {
"react": "16.0.0-alpha.12",
"react-native": "0.47.1"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.1.0",
"deep-freeze": "^0.0.1",
"jest": "20.0.4",
"prettier": "^1.5.3",
"prettier-check": "^1.0.0"
},
"jest": {
"preset": "react-native"
}
}