-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
88 lines (88 loc) · 2.41 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
{
"license": "MIT",
"version": "1.2.1",
"name": "gatsby-remark-embed-gist",
"description": "Gatsby remark gists preprocessor",
"author": {
"name": "Patricio Trevino",
"email": "patricio@weirdpattern.com"
},
"repository": {
"type": "git",
"url": "https://github.com/weirdpattern/gatsby-remark-embed-gist"
},
"bugs": {
"url": "https://github.com/weirdpattern/gatsby-remark-embed-gist/issues"
},
"main": "index.js",
"keywords": [
"gatsby",
"gatsbyjs",
"gatsby-plugin",
"gatsby-remark",
"remark",
"gist",
"embedded",
"plugin"
],
"scripts": {
"build": "rimraf gatsby-ssr.js index.js && cross-env BABEL_ENV=production babel src --out-dir .",
"clean": "npx rimraf node_modules",
"format": "prettier --write ./{src,specs}/{,**}/*.js",
"lint": "eslint ./{src,specs}/{,**}/*.js --config eslint.config.js",
"test": "jest",
"test:verbose": "jest --verbose",
"test:coverage": "jest --coverage --runInBand --no-cache",
"release": "yarn run build && ./node_modules/.bin/standard-version"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"babel-eslint": "^10.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-json": "^2.1.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"husky": "^4.2.5",
"jest": "^26.4.2",
"lint-staged": "^10.2.12",
"prettier": "^2.1.0",
"react": "^16.13.1",
"remark": "^12.0.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0"
},
"dependencies": {
"@babel/runtime": "^7.11.2",
"async-unist-util-visit": "^1.0.0",
"cheerio": "^1.0.0-rc.3",
"parse-numeric-range": "^1.2.0",
"node-fetch": "^2.6.0"
},
"peerDependencies": {
"gatsby": "*",
"gatsby-transformer-remark": "*",
"react": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"lint-staged": {
"*.js{,x}": [
"prettier --write",
"git add"
]
}
}