-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
72 lines (72 loc) · 2.08 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
{
"name": "tistore",
"version": "0.5.2",
"codename": "Pyo Hyemi",
"description": "Tistory photo grabber",
"homepage": "https://github.com/Kagami/tistore",
"about": "tistore is a simple GUI application for grabbing photos from Tistory blogs. It can grab entire blog, separate post or use a list of URLs and download them in parallel using blazingly fast aria2 backend.",
"scripts": {
"start": "webpack --watch",
"dev": "nw dist/app",
"test": "eslint .",
"clean": "rm -rf dist",
"clean-app": "rm -rf dist/app",
"build-app": "npm run clean-app && NODE_ENV=production webpack",
"release-lin64": "PLATFORM=lin64 npm run build-app && make lin64",
"release-win32": "PLATFORM=win32 npm run build-app && make win32",
"release": "npm run clean && npm run release-lin64 && npm run release-win32"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-class-properties"
],
"presets": [
"react"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kagami/tistore.git"
},
"keywords": [
"tistory",
"photo",
"grabber",
"download"
],
"author": "Kagami Hiiragi",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/Kagami/tistore/issues"
},
"dependencies": {
"he": "^1.2.0",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-fa": "^5.0.0",
"request": "^2.87.0",
"throat": "^4.1.0",
"which": "^1.3.1"
},
"devDependencies": {
"babel-core": "^6.7.0",
"babel-eslint": "^8.0.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-react": "^6.5.0",
"css-loader": "^2.1.1",
"ejs": "^2.5.7",
"ejs-html-loader": "^3.1.0",
"eslint": "4.9.x",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"json-loader": "^0.5.4",
"nw": "0.38.1-sdk",
"skip-loader": "^1.0.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^3.8.1"
}
}