-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "gatsby-remark-embedded-codesandbox",
"version": "1.2.0",
"description": "Gatsby Remark plugin for embedding Codesandbox given a folder of files",
"main": "index.js",
"repository": "https://github.com/elboman/gatsby-remark-embedded-codesandbox",
"author": "Marco Botto <[email protected]>",
"bugs": {
"url": "https://github.com/elboman/gatsby-remark-embedded-codesandbox/issues"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"remark",
"codesandbox",
"embed",
"embedded"
],
"license": "MIT",
"private": false,
"dependencies": {
"jest": "^23.1.0",
"lz-string": "^1.4.4",
"query-string": "^6.0.0",
"unist-util-map": "^1.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.4",
"prettier": "^1.12.1",
"remark": "^9.0.0",
"standard-version": "^4.3.0"
},
"scripts": {
"test": "jest",
"test-ci": "jest --verbose",
"build": "BABEL_ENV=production babel src --out-dir . --ignore __tests__",
"prepublishOnly": "cross-env yarn test && NODE_ENV=production yarn build",
"release": "standard-version"
}
}