-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.69 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
{
"name": "@ganta/rehype-element-properties",
"version": "1.0.0",
"description": "Rehype plugin to replace element properties",
"type": "module",
"source": "src/index.ts",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "microbundle watch",
"build": "microbundle",
"lint": "run-p 'lint:*'",
"lint:prettier": "prettier --check '**/*.{ts,json,json5,cjs}'",
"lint:eslint": "eslint '**/*.ts'",
"fix": "run-s 'fix:*'",
"fix:prettier": "prettier --write '**/*.{ts,json,json5,cjs}'",
"fix:eslint": "eslint '**/*.ts' --fix",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganta/rehype-element-properties.git"
},
"author": "Hideki Igarashi <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ganta/rehype-element-properties/issues"
},
"homepage": "https://github.com/ganta/rehype-element-properties",
"keywords": [
"unified",
"rehype",
"rehype-plugin",
"html",
"hast"
],
"dependencies": {
"unist-util-visit": "~5.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.26.0",
"@jest/types": "29.6.3",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"jest": "29.7.0",
"microbundle": "0.15.1",
"npm-run-all2": "7.0.1",
"prettier": "3.3.3",
"rehype": "12.0.1",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"unified": "10.1.2"
}
}