forked from baerrach/gatsby-remark-plantuml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.16 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
{
"name": "gatsby-remark-plantuml",
"description": "Gatsby Remark plugin to transform PlantUML code blocks into SVG images",
"version": "0.7.0",
"author": "Barrie Treloar <[email protected]>",
"bugs": {
"url": "https://github.com/baerrach/gatsby-remark-plantuml/issues"
},
"homepage": "https://github.com/baerrach/gatsby-remark-plantuml",
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"plantuml"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/baerrach/gatsby-remark-plantuml"
},
"scripts": {
"jest": "jest",
"release": "standard-version",
"lint": "eslint .",
"format:check": "prettier --check .",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch",
"visualize:tests": "node scripts/visualize-tests.js",
"v": "npm run visualize:tests"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"@rauschma/stringio": "^1.4.0",
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.3",
"hasbin": "^1.2.3",
"unist-util-visit": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@commitlint/cli": "^8.3.4",
"@commitlint/config-conventional": "^8.3.4",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"babel-preset-gatsby-package": "^0.4.4",
"commitizen": "^4.1.2",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"gatsby-cli": "^2.12.67",
"husky": "^4.2.5",
"jest": "^25.5.4",
"lodash": "^4.17.19",
"prettier": "^2.0.5",
"remark": "^12.0.1",
"standard-version": "^8.0.2"
},
"engines": {
"node": ">=8.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}