-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
40 lines (40 loc) · 1.15 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
{
"name": "gatsby-remark-code-buttons",
"version": "2.0.7",
"description": "Add copy buttons to code snippets",
"main": "index.js",
"scripts": {
"build": "npm run sass && npm run babel",
"sass": "node_modules/node-sass/bin/node-sass src/styles.scss ./styles.css",
"babel": "node_modules/@babel/cli/bin/babel.js src --out-dir .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iamskok/gatsby-remark-code-buttons.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"gatsby-remark-plugin",
"gatsby-transformer-remark",
"buttons",
"markdown"
],
"author": "Vladimir Skok <[email protected]> (https://github.com/iamskok)",
"license": "ISC",
"bugs": {
"url": "https://github.com/iamskok/gatsby-remark-code-buttons/issues"
},
"homepage": "https://github.com/iamskok/gatsby-remark-code-buttons#readme",
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/preset-env": "7.14.7",
"node-sass": "5.0.0"
},
"dependencies": {
"query-string": "6.14.1",
"unist-util-visit": "2.0.3"
}
}