-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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
{
"name": "axe-markdown-loader",
"version": "2.0.5",
"description": "allows you to import md files as React components and easy creation of documentation",
"main": "index.production.js",
"author": "Sammy Saglam <sami@saglam.tk>",
"license": "MIT",
"homepage": "https://github.com/sammysaglam/axe-markdown-loader",
"repository": {
"type": "git",
"url": "https://github.com/sammysaglam/axe-markdown-loader"
},
"scripts": {
"build": "webpack",
"watch": "webpack --progress --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"dependencies": {
"buble": "^0.19.3",
"front-matter": "^2.3.0",
"reduce-object": "^0.1.3",
"remarkable": "^1.7.1",
"stylis": "^3.5.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^23.2.0",
"babel-loader": "^7.1.2",
"babel-plugin-static-fs": "^1.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.10",
"extract-text-webpack-plugin": "^3.0.2",
"jest": "^23.2.0",
"jest-cli": "^23.2.0",
"node-sass": "^4.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"sass-loader": "^7.0.3",
"webpack": "^4.14.0"
},
"jest": {
"moduleDirectories": [
"node_modules",
"src"
]
}
}