-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.35 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
{
"name": "gatsby-remark-code-selector",
"description": "Transform equivalent code blocks in Gatsby markdown files into a selector",
"version": "0.1.2",
"keywords": [
"gatsby",
"gatsby-plugin",
"remark"
],
"main": "index.js",
"files": [
"/index.js",
"/gatsby-browser.js"
],
"author": "Alan Poulain <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/alanpoulain/gatsby-remark-code-selector#readme",
"bugs": {
"url": "https://github.com/alanpoulain/gatsby-remark-code-selector/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alanpoulain/gatsby-remark-code-selector.git"
},
"scripts": {
"build": "babel src --out-dir .",
"watch": "babel -w src --out-dir .",
"prepare": "cross-env NODE_ENV=production npm run build",
"lint": "eslint --fix ."
},
"dependencies": {
"remark-macro": "^1.0.0",
"unist-util-visit": "^2.0.0"
},
"peerDependencies": {
"gatsby": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"babel-preset-gatsby-package": "^0.4.0",
"cross-env": "^5.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-prettier": "^3.0.0",
"prettier": "^2.0.0"
}
}