forked from javiercf/react-markdown-loader
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (69 loc) · 1.66 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
{
"name": "@reem/react-markdown-loader",
"version": "1.3.0",
"description": "Webpack loader to render React Components from markdown",
"keywords": [
"react",
"styleguide",
"webpack",
"loader",
"markdown"
],
"homepage": "https://github.com/terminalcloud/react-markdown-loader",
"bugs": "https://github.com/terminalcloud/react-markdown-loader/issues",
"license": "MIT",
"author": "Javier Cubides <[email protected]>",
"contributors": [
"Fernando Pasik <[email protected]> (http://fernandopasik.com/)",
"Jonathan Reem <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/terminalcloud/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": {
"front-matter": "^2.1.0",
"prismjs": "^1.5.1",
"remarkable": "^1.6.2"
},
"devDependencies": {
"chai": "^3.5.0",
"dirty-chai": "^1.2.2",
"eslint": "^3.2.2",
"eslint-config-fernandopasik": "^0.4.4",
"eslint-plugin-react": "^6.0.0",
"mocha": "^3.0.1",
"nyc": "^7.1.0",
"watch": "^0.19.1"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
}
}