-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.08 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
{
"name": "md2react-loader",
"version": "0.1.1",
"description": "Webpack loader to render React Components from markdown",
"keywords": [
"react",
"document",
"webpack",
"loader",
"markdown"
],
"license": "MIT",
"author": "lwxyfer <[email protected]>",
"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",
"except": "^0.1.3",
"front-matter": "^2.1.2",
"marked": "^0.3.17",
"node-prismjs": "^0.1.0",
"remarkable": "^1.7.1"
},
"devDependencies": {
"eslint": "^4.5.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",
"jest": "^20.0.4",
"react": "^15.6.1",
"watch": "^1.0.2"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
}
}