-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "readmix",
"version": "0.9.0",
"description": "Readmix is a command-line markdown generator.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"readmix": "./cli.js"
},
"scripts": {
"test": "jest",
"testwatch": "jest --watchAll --verbose"
},
"keywords": [
"readme",
"markdown",
"license",
"json",
"css",
"toml",
"yaml"
],
"author": "iaseth",
"homepage": "https://readmix.js.org",
"repository": "iaseth/readmix",
"license": "MIT",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"ini": "^4.1.0",
"js-yaml": "^4.1.0",
"json5": "^2.2.3",
"marked": "^4.3.0",
"nunjucks": "^3.2.4",
"toml": "^3.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/marked": "^4.0.8",
"@types/node": "^18.16.0",
"@types/nunjucks": "^3.2.2",
"autoprefixer": "^10.4.14",
"html-color-names": "^0.3.2",
"jest": "^29.5.0",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.2"
}
}