-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.24 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
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "mallery",
"amdName": "mallery",
"version": "1.0.0-alpha.7",
"description": "Static documentation site generator",
"source": "lib/main.js",
"main": "dist/main.js",
"module": "dist/main.m.js",
"umd:main": "dist/main.umd.js",
"esmodule": "dist/main.modern.js",
"types": "dist/main.d.ts",
"authors": [
"Katja Lutz <[email protected]>"
],
"homepage": "https://github.com/malleryjs/mallery",
"repository": {
"type": "git",
"url": "https://github.com/malleryjs/mallery.git"
},
"license": "MIT",
"bin": {
"mallery": "./dist/main.js"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^25.2.3",
"@types/node": "^14.0.11",
"alo": "^4.0.0-alpha.25",
"badgen": "^3.1.0",
"bootstrap": "^4.4.1",
"chai": "^4.2.0",
"clsx": "^1.0.4",
"emotion": "^10.0.27",
"fs-extra": "^9.0.1",
"jest": "^26.0.1",
"mallery": "1.0.0-alpha.4",
"microbundle": "github:developit/microbundle#master",
"icono": "^1.3.2",
"preact": "^10.4.4",
"prettier": "^2.0.5",
"standard-version": "^8.0.0",
"ts-jest": "^26.1.0",
"ejs": "^3.0.1",
"lodash.merge": "^4.6.2",
"sass": "^1.26.5",
"yargs": "^14.2.2",
"typescript": "^3.9.3",
"ts-node": "^8.10.2"
},
"dependencies": {
"remark": "^11.0.2",
"remark-autolink-headings": "^5.2.1",
"remark-gemoji-to-emoji": "^1.1.0",
"remark-github": "^8.0.0",
"remark-highlight.js": "^5.2.0",
"remark-html": "^10.0.0",
"remark-slug": "^5.1.2",
"remark-toc": "^6.0.0",
"yargs": "^14.2.2"
},
"files": [
"lib",
"dist",
"front/package.json",
"front/lib",
"front/dist"
],
"standard-version": {
"scripts": {
"postchangelog": "node scripts/badges.js && node scripts/site.js && git add assets site README.md"
}
},
"jest": {
"preset": "ts-jest/presets/js-with-ts",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"json-summary"
],
"coveragePathIgnorePatterns": [
"main.(?:tsx|ts|jsx|js)",
"/lib/tpl-lib/",
"/node_modules/"
],
"collectCoverageFrom": [
"lib/**/*.{ts,tsx,js,jsx}",
"front/lib/**/*.{ts,tsx,js,jsx}"
]
}
}