-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.31 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
{
"name": "recma-mdx-escape-missing-components",
"version": "1.1.0",
"description": "Recma plugin to set the default value `() => null` for the Components in MDX in case of missing or not provided.",
"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 test.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/recma-mdx-escape-missing-components.git"
},
"keywords": [
"unified",
"estree",
"esast",
"mdx",
"mdxjs",
"recma",
"recma-plugin",
"recma-mdx",
"escape missing components",
"recma-mdx-escape-missing-components"
],
"author": "ipikuka <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/ipikuka/recma-mdx-escape-missing-components#readme",
"bugs": {
"url": "https://github.com/ipikuka/recma-mdx-escape-missing-components/issues"
},
"devDependencies": {
"@mdx-js/mdx": "^3.0.1",
"@types/dedent": "^0.7.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"dedent": "^1.5.1",
"esast-util-from-js": "^2.0.1",
"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",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"type-coverage": "^2.27.1",
"typescript": "^5.4.3",
"unified": "^11.0.4"
},
"dependencies": {
"@types/estree": "^1.0.5",
"estree-util-visit": "^2.0.0"
},
"sideEffects": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreAsAssertion": true,
"ignoreCatch": true,
"strict": true
}
}