-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
76 lines (76 loc) · 2.38 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
76
{
"name": "markdown-react-js",
"version": "1.0.2",
"description": "Markdown to React Component converter",
"main": "lib/index.js",
"directories": {
"example": "examples",
"test": "test"
},
"dependencies": {
"lodash": "^4.17.10",
"markdown-it": "^8.4.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "^7.2.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-stage-0": "^7.0.0",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"chai": "^2.3.0",
"eslint": "^5.10.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-react": "^2.2.0",
"immutability-helper": "^2.4.0",
"json-loader": "^0.5.7",
"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": "^1.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"mocha": "^5.2.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"react": "^16.0.0"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --require @babel/register --recursive --reporter spec --timeout 3000",
"dist": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.config.js",
"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",
"babel-version": "./node_modules/.bin/babel --version"
},
"repository": {
"type": "git",
"url": "https://github.com/alexkuz/markdown-react-js"
},
"keywords": [
"markdown",
"react"
],
"author": "Alexander <[email protected]> (http://kuzya.org/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexkuz/markdown-react-js/issues"
},
"homepage": "https://github.com/alexkuz/markdown-react-js"
}