forked from nteract/notebook-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
{
"name": "notebook-preview",
"version": "0.2.4",
"description": "Lightweight preview of a notebook, nteract style",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "babel src --out-dir lib",
"pretest": "npm run build",
"test": "mocha -r test/setup.js --compilers js:babel-core/register 'test/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nteract/notebook-preview.git"
},
"author": "Kyle Kelley <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/nteract/notebook-preview/issues"
},
"homepage": "https://github.com/nteract/notebook-preview#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.4.2",
"eslint-plugin-react": "^5.1.1",
"immutable": "^3.8.1",
"jsdom": "^9.2.1",
"mocha": "^2.4.5",
"nyc": "^6.4.2",
"react": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-dom": "^15.0.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"react-dom": "^0.14.0 || ^15.0.0-0"
},
"dependencies": {
"codemirror": "^5.14.2",
"commutable": "^1.0.1",
"react-codemirror": "^0.2.6",
"react-jupyter-display-area": "^1.0.0",
"remark": "^4.2.2",
"remark-react": "^2.1.0",
"transformime-react": "^1.0.0"
}
}