forked from alexkuz/markdown-react-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "react-markdown-demisto",
"version": "1.0.4",
"description": "Markdown to React Component converter",
"main": "lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"lodash": "^4.17.21",
"markdown-it": "^6.0.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel": "^5.2.6",
"babel-core": "^5.2.6",
"babel-eslint": "^3.0.1",
"babel-loader": "^5.0.0",
"babel-runtime": "^5.6.17",
"chai": "^2.3.0",
"eslint": "^0.21.0",
"eslint-plugin-react": "^2.2.0",
"immutability-helper": "^2.4.0",
"json-loader": "^0.5.1",
"markdown-it-abbr": "^1.0.0",
"markdown-it-container": "^1.0.0",
"markdown-it-deflist": "^1.0.0",
"markdown-it-emoji": "^1.0.0",
"markdown-it-footnote": "^1.0.0",
"markdown-it-ins": "^1.0.0",
"markdown-it-mark": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mocha": "^2.2.4",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"webpack": "^1.8.11"
},
"peerDependencies": {
"react": "^16.0.0"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --compilers js:babelhook --recursive --reporter spec --timeout 3000",
"dist": "NODE_ENV=production ./node_modules/.bin/webpack -p",
"build": "./node_modules/.bin/babel --out-dir lib --optional runtime src",
"lint": "./node_modules/.bin/eslint test src/index.js",
"prepublish": "npm run build && npm run dist",
"preversion": "npm test",
"version": "npm run build && npm run dist && git add -A .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/alexkuz/markdown-react-js"
},
"keywords": [
"markdown",
"react"
],
"author": "Demisto",
"license": "MIT",
"bugs": {
"url": "https://github.com/demisto/markdown-react-js/issues"
},
"homepage": "https://github.com/demisto/markdown-react-js"
}