-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.53 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
{
"name": "remark-flexible-containers",
"version": "1.2.1",
"description": "Remark plugin to add custom containers with customizable properties in markdown",
"type": "module",
"exports": "./dist/esm/index.js",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc --build && type-coverage",
"format": "npm run prettier && npm run lint",
"prettier": "prettier --write .",
"lint": "eslint .",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs --coverage",
"test:file": "NODE_OPTIONS=--experimental-vm-modules jest --config ./jest.config.cjs HTML_inside.spec.ts",
"prepack": "npm run build",
"prepublishOnly": "npm test && npm run format"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipikuka/remark-flexible-containers.git"
},
"keywords": [
"unified",
"mdast",
"markdown",
"remark",
"plugin",
"remark-plugin",
"remark-container",
"remark-containers",
"remark-custom-container",
"remark-custom-containers",
"remark-flexible-containers"
],
"author": "ipikuka <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/remark-flexible-containers#readme",
"bugs": {
"url": "https://github.com/ipikuka/remark-flexible-containers/issues"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.27",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"dedent": "^0.7.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"prettier-2": "npm:prettier@^2.8.8",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"type-coverage": "^2.27.1",
"typescript": "^5.4.2",
"unified": "^11.0.4"
},
"dependencies": {
"@types/mdast": "^4.0.3",
"unist-builder": "^4.0.0",
"unist-util-find-after": "^5.0.0",
"unist-util-find-between-all": "^1.0.5",
"unist-util-visit": "^5.0.0"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"ignore-non-null-assertion": true,
"strict": true
}
}