-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.88 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "rehype-gist",
"version": "1.0.0",
"description": "A rehype plugin for embedding static GitHub Gists in your HTML and MD/X content.",
"author": "Daryl G. Wright <daryl@goldenpath.ca>",
"license": "MIT",
"type": "module",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE.md",
"CHANGELOG.md"
],
"scripts": {
"build": "microbundle --tsconfig tsconfig.build.json src/index.ts",
"develop": "microbundle watch --tsconfig tsconfig.build.json src/index.ts",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test-unit": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testRegex \"\\.test\\.ts$\"",
"test-e2e": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --testRegex \"\\.e2e-test\\.ts$\"",
"update-snapshot": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --updateSnapshot",
"clean": "rimraf ./dist",
"format": "eslint . --fix --ext ts --ext tsx",
"lint": "eslint . --ext ts --ext tsx",
"type-check": "tsc --pretty --noEmit",
"build:docs": "npm --prefix ./docs/ run build",
"dev:docs": "npm --prefix ./docs/ run dev",
"start:docs": "npm --prefix ./docs/ run start",
"lint:docs": "npm --prefix ./docs/ run lint",
"serve:docs": "npm --prefix ./docs/ run serve"
},
"dependencies": {
"axios": "^1.4.0",
"hast-util-classnames": "^2.0.1",
"hast-util-from-html": "^1.0.2",
"hast-util-is-element": "^2.1.3",
"parse-numeric-range": "^1.3.0",
"qs": "^6.11.2",
"unist-util-visit": "^4.1.2"
},
"devDependencies": {
"@types/hast": "^2.3.4",
"@types/jest": "^29.5.1",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^13.4.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-quotes": "^0.0.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-tailwindcss": "^3.12.0",
"jest": "^29.5.0",
"microbundle": "^0.15.1",
"rehype-parse": "^8.0.4",
"rehype-stringify": "^9.0.3",
"remark-parse": "^10.0.2",
"remark-rehype": "^10.1.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"unified": "^10.1.2"
},
"repository": {
"type": "git",
"url": "https://github.com/goldenpathtechnologies/rehype-gist.git"
},
"bugs": {
"url": "https://github.com/goldenpathtechnologies/rehype-gist/issues"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/exec",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"src/version.ts",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
],
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
},
"prepareCmd": "npx genversion --semi --double --es6 src/version.ts"
}
}