-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·88 lines (88 loc) · 2.38 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
{
"name": "gatsby-remark-figure-caption",
"description": "transform markdown image to figure with caption element",
"homepage": "https://github.com/leonardodino/gatsby-remark-figure-caption",
"version": "2.0.0",
"author": "Leonardo Dino",
"keywords": [
"gatsby",
"image",
"caption",
"markdown",
"remark",
"gatsby-plugin",
"remark"
],
"license": "MIT",
"main": "index.js",
"peerDependencies": {
"gatsby": "^2.0.0",
"gatsby-transformer-remark": "^2.0.0"
},
"repository": "https://github.com/leonardodino/gatsby-remark-figure-caption",
"scripts": {
"build": "babel src --out-dir . --ignore '**/*.test.js' -s",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "yarn build -w",
"lint": "eslint src fixtures ",
"jest": "jest",
"test": "npm-run-all -s lint jest",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"test:watch": "jest --watch"
},
"bugs": {
"url": "https://github.com/leonardodino/gatsby-remark-figure-caption/issues"
},
"dependencies": {
"@babel/runtime": "^7.1.2",
"array.prototype.flatmap": "^1.2.1",
"unist-util-visit": "^1.4.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-transform-react-jsx": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"cross-env": "^5.1.4",
"eslint": "^5.6.1",
"eslint-plugin-jest": "^21.23.0",
"eslint-plugin-react": "^7.11.1",
"hast-util-assert": "^1.0.1",
"hast-util-select": "^2.1.0",
"husky": "^1.0.1",
"jest": "^23.5.0",
"jest-cli": "^23.5.0",
"mdast-util-assert": "^1.0.2",
"mdast-util-to-hast": "^3.0.2",
"npm-run-all": "4.1.3",
"object.entries": "^1.0.4",
"remark": "^9.0.0",
"unist-util-find": "^1.0.1",
"unist-util-inspect": "^4.1.3",
"unist-util-remove-position": "^1.1.2"
},
"jest": {
"verbose": true,
"coveragePathIgnorePatterns": [
"fixtures"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"coverageReporters": [
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"src/**/*.js"
]
}
}