-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.35 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
{
"name": "react-universal-markdown",
"version": "0.0.28",
"main": "dist/index.js",
"author": "Iddan Aharonson <[email protected]> (https://github.com/iddan)",
"peerDependencies": {
"react-native": "^0.46.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-preset-react-app": "^3.0.3",
"coveralls": "^2.13.1",
"eslint": "^4.3.0",
"eslint-config-fbjs-opensource": "^1.0.0",
"jest": "^20.0.4",
"prettier": "^1.7.4",
"react": "^16.0.0-alpha.12",
"react-dom": "16.0.0-alpha.12"
},
"dependencies": {
"commonmark": "^0.29.2",
"lodash.mapvalues": "^4.6.0",
"shallowequal": "^1.0.2"
},
"description": "Markdown component for Web and Native powered by CommonMark",
"scripts": {
"build": "NODE_ENV=production babel src --out-dir dist --copy-files",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iddan/react-universal-markdown.git"
},
"keywords": [
"react",
"markdown",
"native",
"web",
"commonmark"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iddan/react-universal-markdown/issues"
},
"homepage": "https://github.com/iddan/react-universal-markdown#readme",
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"collectCoverage": true
}
}