forked from nteract/nteract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.76 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
{
"name": "composition",
"version": "0.0.1",
"description": ":notebook: Electron app of the Jupyter Notebook",
"main": "main.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Tests are cool, we should do those.\"",
"start": "electron main.js",
"build": "npm run build:osx && npm run build:win32 && npm run build:linux",
"build:osx": "electron-packager ./ PipBoy --platform=darwin --arch=x64 --version=0.35.1",
"build:win32": "electron-packager ./ PipBoy --platform=win32 --arch=x64 --version=0.35.1",
"build:linux": "electron-packager ./ PipBoy --platform=linux --arch=x64 --version=0.35.1"
},
"repository": {
"type": "git",
"url": "https://github.com/nteract/composition.git"
},
"keywords": [
"jupyter",
"electron",
"notebook",
"nteract",
"data"
],
"author": "rgbkrk",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/composition/issues"
},
"homepage": "https://github.com/nteract/composition",
"dependencies": {
"ansi-to-html": "^0.3.0",
"codemirror": "^5.10.0",
"color": "^0.10.1",
"history": "^1.17.0",
"immutable": "^3.7.6",
"normalize.css": "^3.0.3",
"react": "^0.14.5",
"react-code-mirror": "^3.0.6",
"react-dom": "^0.14.5",
"react-markdown": "^1.2.1",
"react-router": "^1.0.3",
"rx": "^4.0.7",
"transformime-react": "0.2.0"
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "^6.1.18",
"electron-compile": "^1.0.1",
"electron-compilers": "^1.0.1",
"electron-packager": "^5.1.1",
"electron-prebuilt": "^0.35.1",
"eslint": "^1.10.3",
"eslint-plugin-babel": "^3.0.0",
"eslint-plugin-react": "^3.11.3"
}
}