-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.44 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
{
"name": "wakaba",
"version": "0.0.1",
"description": "PC画面上にコメントが流せるデスクトップアプリ「wakaba」",
"main": "src/bin/app.js",
"scripts": {
"start": "electron .",
"build": "gulp",
"watch": "gulp watch",
"package:mac": "electron-packager . wakaba --out=__release__ --platform=darwin --arch=x64 --icon=icons/icon.icns --overwrite",
"package:win": "electron-packager . wakaba --out=__release__ --platform=win32 --arch=x64 --icon=icons/icon.ico --overwrite",
"package:linux": "electron-packager . wakaba --out=__release__ --platform=linux --arch=x64 --icon=icons/icon.icns --overwrite"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuki540net/Wakaba.git"
},
"keywords": [
"wakaba",
"niconico",
"ニコニコ",
"コメント"
],
"author": "yuki540",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuki540net/Wakaba/issues"
},
"homepage": "https://github.com/yuki540net/Wakaba#readme",
"devDependencies": {
"browserify": "^14.1.0",
"coffee-script": "^1.12.4",
"electron": "^1.6.2",
"electron-packager": "^8.5.2",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.4",
"gulp-jade": "^1.1.0",
"gulp-plumber": "^1.1.0",
"gulp-riot": "^1.1.0"
},
"dependencies": {
"electron-json-storage": "^3.0.1",
"nicojs": "^1.1.3",
"node-twitter-api": "^1.8.0",
"riot": "^3.3.2",
"twitter": "^1.7.0"
}
}