forked from gatsby-contrib/gatsby-transformer-ipynb
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "@rafaelquintanilha/gatsby-transformer-ipynb",
"version": "0.2.0",
"description": "Transformer for .ipynb files.",
"main": "n/a",
"scripts": {
"build": "babel src --out-dir . --ignore **/__tests__",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"prepare": "cross-env NODE_ENV=production npm run build",
"lint": "eslint ./src",
"lint:fix": "eslint ./src",
"format": "prettier-eslint --write '**/*.{js,md,json}'",
"publish": "npm run lint && npm publish --access=public",
"test": "echo 'Error: no test specified' && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/rafaelquintanilha/gatsby-transformer-ipynb.git"
},
"keywords": [
"gatsby",
"gatsby-plugin",
"jupyter",
"notebook",
"nteract"
],
"author": "Rafael Quintanilha <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rafaelquintanilha/gatsby-transformer-ipynb/issues"
},
"homepage": "https://github.com/rafaelquintanilha/gatsby-transformer-ipynb#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-eslint": "^10.0.1",
"cross-env": "^5.2.0",
"eslint": "5.11.0",
"eslint-config-google": "^0.11.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"prettier-eslint-cli": "^4.7.1"
},
"peerDependencies": {
"gatsby": ">2.0.0-alpha"
},
"dependencies": {
"@rafaelquintanilha/notebook-render": "0.0.15"
}
}