-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 1.97 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
73
74
75
76
77
78
79
80
81
{
"name": "jdown",
"description": "Convert a directory of markdown files to structured and usable JSON",
"author": "Dan Webb <[email protected]>",
"version": "1.0.5",
"homepage": "https://github.com/DanWebb/jdown#readme",
"repository": {
"type": "git",
"url": "https://github.com/DanWebb/jdown.git"
},
"bugs": {
"url": "https://github.com/DanWebb/jdown/issues"
},
"keywords": [
"markdown",
"json",
"javascript",
"content",
"static-site"
],
"files": [
"dist"
],
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"example": "tsc && node example",
"test": "tsc && ava",
"test:debug": "tsc && ava --verbose",
"test:coverage": "tsc && nyc ava --reporter=text-lcov > coverage.lcov && codecov",
"build": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"ava": {
"files": [
"dist/__tests__/*.test.js"
]
},
"dependencies": {
"camelcase": "5.0.0",
"imagemin": "6.1.0",
"imagemin-gifsicle": "6.0.1",
"imagemin-jpegtran": "6.0.0",
"imagemin-pngquant": "7.0.0",
"imagemin-svgo": "7.0.0",
"imagemin-webp": "5.0.0",
"make-dir": "3.0.0",
"metalsmith": "2.3.0",
"metalsmith-auto-collections": "0.2.0",
"metalsmith-markdown": "1.3.0",
"rimraf": "2.6.3"
},
"devDependencies": {
"@types/camelcase": "4.1.0",
"@types/imagemin": "6.0.0",
"@types/imagemin-gifsicle": "5.2.0",
"@types/imagemin-jpegtran": "5.0.0",
"@types/imagemin-svgo": "7.0.0",
"@types/marked": "0.6.0",
"@types/node": "10.12.18",
"@types/rimraf": "2.0.2",
"@types/sinon": "7.0.4",
"ava": "^3.15.0",
"codecov": "3.2.0",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"marked": "0.7.0",
"nyc": "14.1.1",
"prettier": "1.16.1",
"serve": "^11.3.2",
"sinon": "7.2.3",
"tslint": "5.12.1",
"tslint-config-prettier": "1.17.0",
"tslint-plugin-prettier": "2.0.1",
"typescript": "3.2.4"
}
}