generated from executablebooks/markdown-it-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
92 lines (92 loc) · 2.89 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
{
"name": "markdown-it-docutils",
"version": "0.1.6",
"description": "A markdown-it plugin for implementing docutils style roles and directives",
"author": "Chris Sewell",
"homepage": "https://github.com/executablebooks/markdown-it-docutils",
"license": "MIT",
"keywords": [
"markdown",
"markdown-it",
"markdown-it-plugin",
"docutils"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"unpkg": "dist/index.umd.min.js",
"types": "dist/types/index.d.ts",
"files": [
"src",
"dist"
],
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"style": "./dist/css/style.min.css"
}
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --write src/**/*.ts tests/**/*.ts src/**/*.scss",
"lint": "eslint -c .eslintrc.yml --max-warnings 1 src/**/*.ts tests/**/*.ts",
"lint:fix": "eslint -c .eslintrc.yml --fix src/**/*.ts tests/**/*.ts",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --coverage",
"sass": "sass --style=compressed --source-map --embed-sources src/style/index.sass dist/css/style.min.css && postcss dist/css/style.min.css --use autoprefixer -d dist/css/",
"build:bundles": "rollup -c",
"build:esm": "tsc --module es2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"declarations": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"build": "npm-run-all -l clean -p build:cjs build:esm build:bundles declarations sass",
"build:watch": "rollup -c -w; npm run sass -w",
"prepublishOnly": "npm run build"
},
"jest": {
"preset": "ts-jest"
},
"engines": {
"node": ">=12",
"npm": ">=6"
},
"peerDependencies": {
"markdown-it": "^12.3.2"
},
"dependencies": {
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0",
"@types/js-yaml": "^4.0.5",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"autoprefixer": "^10.4.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"markdown-it": "^12.3.2",
"markdown-it-myst-extras": "^0.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.6",
"postcss-cli": "^9.1.0",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"sass": "^1.49.7",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}