forked from javiercf/react-markdown-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "react-markdown-loader",
"version": "1.1.12",
"description": "Webpack loader to render React Components from markdown",
"keywords": [
"react",
"styleguide",
"webpack",
"loader",
"markdown"
],
"homepage": "https://github.com/javiercf/react-markdown-loader",
"bugs": "https://github.com/javiercf/react-markdown-loader/issues",
"license": "MIT",
"author": "Javier Cubides <[email protected]>",
"contributors": [
"Fernando Pasik <[email protected]> (https://fernandopasik.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/javiercf/react-markdown-loader.git"
},
"main": "src/index.js",
"scripts": {
"build": "npm run -s lint && npm test",
"start": "npm run watch",
"lint": "eslint .",
"test": "jest --coverage",
"pretest": "rm -rf coverage",
"travis": "npm run -s build",
"watch": "watch 'npm run -s build' src/ test/"
},
"dependencies": {
"camelize": "^1.0.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"except": "^0.1.3",
"front-matter": "^2.1.2",
"node-prismjs": "^0.1.0",
"remarkable": "^1.7.1"
},
"devDependencies": {
"eslint": "^4.5.0",
"jest": "^20.0.4",
"react": "^15.6.1",
"watch": "^1.0.2"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
}
}