forked from javiercf/react-markdown-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.72 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
{
"name": "react-markdown-loader",
"version": "1.1.10",
"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]> (http://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": "nyc mocha",
"pretest": "rm -rf coverage .nyc_output",
"travis": "npm run -s build",
"watch": "watch 'npm run -s build' src/ test/"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"all": true,
"exclude": [
"test/",
"coverage/"
],
"check-coverage": false,
"lines": 100,
"functions": 100,
"branches": 100,
"statements": 100
},
"dependencies": {
"camelize": "^1.0.0",
"except": "^0.1.3",
"front-matter": "^2.1.0",
"node-prismjs": "^0.1.0",
"remarkable": "^1.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.2.2",
"eslint-config-fernandopasik": "^0.5.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.0.0",
"mocha": "^3.0.1",
"nyc": "10.0.0",
"watch": "^1.0.0"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
}
}