-
Notifications
You must be signed in to change notification settings - Fork 107
/
package.json
70 lines (70 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
{
"name": "kajero",
"version": "0.2.0",
"description": "Interactive JavaScript notebooks with clever graphing",
"repository": {
"type": "git",
"url": "https://github.com/JoelOtter/kajero"
},
"keywords": [
"notebook"
],
"preferGlobal": true,
"bin": {
"kajero": "bin/cmd.js"
},
"author": "Joel Auterson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JoelOtter/kajero/issues"
},
"homepage": "https://github.com/JoelOtter/kajero",
"dependencies": {
"request": "^2.72.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browser-sync": "^2.11.2",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"clipboard": "^1.5.10",
"coveralls": "^2.11.9",
"envify": "^3.4.0",
"fetch-mock": "^4.4.0",
"font-awesome": "^4.5.0",
"front-matter": "^2.0.6",
"gulp": "^3.9.1",
"gulp-jsx-coverage": "^0.3.8",
"gulp-sass": "^2.2.0",
"gulp-util": "^3.0.7",
"highlight.js": "^9.2.0",
"immutable": "^3.7.6",
"jsdom": "^8.4.0",
"jutsu": "^0.1.1",
"markdown-it": "^6.0.1",
"mocha": "^2.4.5",
"mocha-jsdom": "^1.1.0",
"query-string": "^4.1.0",
"react": "^0.14.8",
"react-codemirror": "^0.2.6",
"react-dom": "^0.14.8",
"react-redux": "^4.4.1",
"redux": "^3.3.1",
"redux-mock-store": "^1.0.2",
"redux-thunk": "^2.0.1",
"reshaper": "^0.3.1",
"sinon": "^1.17.3",
"smolder": "^0.3.1",
"uglifyify": "^3.0.1",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"whatwg-fetch": "^0.11.0"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers js:babel-register --recursive \"./src/**/*-spec.js\"",
"test-cov": "./node_modules/.bin/gulp test-cov"
}
}