-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.02 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
{
"name": "@peopledoc/styledown",
"description": "Markdown-based styleguide generator",
"version": "5.0.0",
"license": "MIT",
"author": {
"name": "PeopleDoc",
"url": "https://github.com/peopledoc"
},
"homepage": "https://github.com/peopledoc/styledown",
"repository": "https://github.com/peopledoc/styledown",
"bugs": "https://github.com/peopledoc/styledown/issues",
"keywords": [
"css",
"generator",
"maintainable",
"markdown",
"styleguide"
],
"main": "index",
"bin": {
"styledown": "./bin/styledown.js"
},
"scripts": {
"test": "mocha -R progress",
"lint:js": "eslint ."
},
"dependencies": {
"cheerio": "^0.22.0",
"highlight.js": "^11.4.0",
"marked": "^4.0.12",
"mdextract": "^1.0.0",
"minimist": "^1.2.0",
"prettier": "2.5.1",
"pug": "^3.0.2",
"read-input": "^0.3.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^8.8.0",
"eslint-config-peopledoc": "^3.0.2",
"mocha": "^9.2.0",
"sinon": "^13.0.1"
}
}