forked from micahstubbs/torrent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (102 loc) · 3.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name":"h2o-torrent",
"version":"0.1.0",
"description":"an interactive code notebook for the h2o-3 machine learning platform",
"main":"index.js",
"directories":{
"test":"test"
},
"scripts":{
"start":"npm install && bower install && gulp",
"build-templates":"gulp",
"build-js":"rollup -c -- src/index.js && cp build/js/flow.js ../../../h2o-3/h2o-web/src/main/resources/www/flow/js/ && cp build/js/flow.js ../../../h2o-3/h2o-web/lib/h2o-flow/build/js/",
"build-no-libs": "gulp build-templates build-styles && rollup -c -- src/index.js && cp -r build/ ../../../h2o-3/h2o-web/src/main/resources/www/flow/ && cp -r build/ ../../../h2o-3/h2o-web/lib/h2o-flow/build/",
"build": "gulp && rollup -c -- src/index.js && cp -r build/ ../../../h2o-3/h2o-web/src/main/resources/www/flow/ && cp -r build/ ../../../h2o-3/h2o-web/lib/h2o-flow/build/",
"build-tests":"rollup -c tests.rollup.js -- test/index.js",
"patch": "cp -r patch/h2o-3/ ../h2o-3/",
"clone-h2o": "cd .. && git clone [email protected]:h2oai/h2o-3.git",
"build-h2o": "npm run patch && cd ../h2o-3/ && ./gradlew build -x test",
"start-h2o": "cd ../h2o-3/build/ && java -jar h2o.jar",
"lint":"eslint test --fix"
},
"repository":{
"type":"git",
"url":"https://github.com/micahstubbs/torrent"
},
"keywords":[
"H2O",
"Machine Learning",
"AI",
"code",
"notebook",
"JavaScript",
"Scala",
"data science"
],
"author":"@micahstubbs <[email protected]> (https://twitter.com/micahstubbs)",
"contributors":[
"@micahstubbs <[email protected]> (https://twitter.com/micahstubbs)"
],
"license":"MIT",
"bugs":{
"url":"https://github.com/micahstubbs/torrent/issues"
},
"homepage":"https://github.com/micahstubbs/torrent",
"devDependencies":{
"async":"~0.9.0",
"babel-preset-es2015-rollup":"^1.1.1",
"babelrc-rollup":"^3.0.0",
"bower":"~1.3.8",
"browserify":"~3.44.2",
"cli":"^0.11.2",
"coffee-script":"~1.7.1",
"coffeelint":"~1.1.0",
"desugar":"0.0.3",
"escodegen":"~1.4.1",
"eslint":"^2.9.0",
"eslint-config-airbnb":"^9.0.1",
"eslint-plugin-import":"^1.10.2",
"eslint-plugin-jsx-a11y":"^1.5.5",
"eslint-plugin-react":"^5.2.2",
"esprima":"~1.2.2",
"faucet":"0.0.1",
"groc":"~0.6.3",
"gulp":"~3.8.2",
"gulp-clean":"~0.3.1",
"gulp-coffee":"~2.0.1",
"gulp-concat":"~2.2.0",
"gulp-footer":"~1.0.4",
"gulp-header":"~1.0.2",
"gulp-if":"~1.2.1",
"gulp-ignore":"~2.0.1",
"gulp-jade":"~0.6.0",
"gulp-order":"~1.1.1",
"gulp-stylus":"~1.0.2",
"gulp-task-listing":"~0.3.0",
"gulp-util":"~2.2.18",
"istanbul":"~0.2.7",
"jade":"~1.3.1",
"js-yaml":"~3.2.2",
"jshint":"~2.5.0",
"lodash":"~2.4.1",
"marked":"~0.3.2",
"minimist":"~1.1.0",
"nib":"~1.0.2",
"package-preamble":"0.0",
"request":"~2.34.0",
"rollup":"^0.33.2",
"rollup-plugin-babel":"^2.6.1",
"rollup-plugin-commonjs":"^5.0.5",
"rollup-plugin-json":"^2.0.1",
"rollup-plugin-node-resolve":"^2.0.0",
"rollup-plugin-strip":"^1.1.1",
"stylus":"~0.43.0",
"tape":"~2.12.3",
"through2":"~0.6.1",
"uglify-js":"~2.4.13",
"watchy":"~0.4.3",
"webpage":"0.3.0"
},
"dependencies":{
}
}