-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
40 lines (40 loc) · 1016 Bytes
/
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
{
"name": "waifu2x-js",
"version": "0.0.1",
"author": "Takuya Asano <[email protected]>",
"description": "Image super-resolution using deep convolutional neural network (CNN)",
"keywords": [
"image processing",
"super resolution",
"cnn",
"convolutional neural network"
],
"license": "MIT",
"homepage": "https://github.com/takuyaa/waifu2x-js",
"repository": {
"type": "git",
"url": "https://github.com/takuyaa/waifu2x-js.git"
},
"bugs": {
"url": "https://github.com/takuyaa/waifu2x-js/issues"
},
"main": "./build/node/index.js",
"scripts": {
"start": "gulp",
"install": "gulp build"
},
"dependencies": {},
"devDependencies": {
"babelify": "^6.1.2",
"browser-sync": "^1.8.1",
"browserify": "^7.0.3",
"gulp": "^3.8.10",
"gulp-babel": "^5.2.0",
"gulp-notify": "^2.1.0",
"gulp-util": "^3.0.1",
"pretty-hrtime": "^0.2.2",
"require-dir": "^0.1.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^2.2.1"
}
}