-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.06 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
{
"name": "gatsby-remark-acronyms",
"version": "1.2.1",
"description": "Gatsby Remark plugin to show description tooltips for acronyms found in markdown text",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"build": "tsc",
"prepublishOnly": "yarn lint && yarn test && yarn build",
"test": "jest --passWithNoTests",
"lint": "yarn run lint:code && yarn run lint:other",
"lint:code": "yarn run eslint:defaults",
"lint:other": "yarn run prettier:defaults --check",
"format": "yarn run format:code && yarn run format:other",
"format:code": "yarn run eslint:defaults --fix",
"format:other": "yarn run prettier:defaults --write",
"eslint:defaults": "eslint . --ext .ts,.tsx,.js,.jsx",
"prettier:defaults": "prettier \"**/*.{json,md,markdown,css,scss,yaml,yml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pedrolamas/gatsby-remark-acronyms.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"markdown",
"acronym"
],
"author": "Pedro Lamas <pedrolamas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pedrolamas/gatsby-remark-acronyms/issues"
},
"homepage": "https://github.com/pedrolamas/gatsby-remark-acronyms#readme",
"dependencies": {
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.11",
"husky": "^7.0.4",
"jest": "^29.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.7.1",
"remark": "^13.0.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"peerDependencies": {
"gatsby": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
},
"files": [
"dist/**/*"
]
}