-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 3.31 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
{
"name": "Kaizoku",
"version": "0.7.3",
"description": "Desktop client for live.nicovideo.jp",
"main": "main.js",
"scripts": {
"lint": "./node_modules/.bin/eslint ./src",
"package": "NODE_ENV=production ./node_modules/.bin/electron-packager ./app Kaizoku --platform=darwin --arch=x64 --icon=icons/app.icns --out=packages --overwrite --asar.unpack=**/PepperFlashPlayer.plugin/** --osx-sign='Developer ID Application: Tomohiro Suwa (LV4P664H66)'",
"prepackage": "npm run build && cp package*.json ./app && cp -r plugins ./app && cd ./app && rm -rf node_modules && npm install --production && ../node_modules/.bin/electron-rebuild -m . sqlite3 keytar",
"gen_icns": "./node_modules/.bin/icon-gen -i ./icons/icon.svg -o ./icons -m icns -r",
"zip": "cd packages && zip -r Kaizoku-darwin-x64.zip Kaizoku-darwin-x64/Kaizoku.app",
"electron-rebuild": "./node_modules/.bin/electron-rebuild sqlite3 keytar",
"build": "rm -rf ./app/* && npm run build:main && npm run build:renderer && cp package.json ./app && cp -r plugins ./app",
"build:main": "cross-env NODE_ENV=production node -r babel-register ./node_modules/.bin/webpack --config webpack.config.electron.js --optimize-minimize --progress --profile --colors",
"build:renderer": "cross-env NODE_ENV=production node -r babel-register ./node_modules/.bin/webpack --config webpack.config.production.js --optimize-minimize --progress --profile --colors --display-error-details",
"start": "cross-env NODE_ENV=production electron ./app",
"start:dev": "cross-env NODE_ENV=development electron -r babel-register ./src/main.js",
"watch": "cross-env NODE_ENV=development node -r babel-register ./node_modules/.bin/webpack-dev-server --config webpack.config.development.js",
"dev": "./node_modules/.bin/npm-run-all -p watch start:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsuwatch/nicomentron.git"
},
"author": "tsuwatch",
"license": "ISC",
"bugs": {
"url": "https://github.com/tsuwatch/nicomentron/issues"
},
"homepage": "https://github.com/tsuwatch/nicomentron#readme",
"dependencies": {
"almin": "^0.9.1",
"cheerio": "^0.22.0",
"electron-gh-releases": "^2.0.4",
"electron-window-state": "^4.0.0",
"font-awesome": "^4.7.0",
"keytar": "^4.13.0",
"lodash": "^4.17.13",
"nicolive-api": "^0.8.0",
"niconico-search": "^0.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"request": "^2.81.0",
"sqlite3": "^4.0.7",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.5.2",
"babel-core": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"cross-env": "^3.1.3",
"css-loader": "^0.26.1",
"electron": "^2.0.18",
"electron-packager": "^8.5.1",
"electron-rebuild": "^1.7.2",
"eslint": "^3.9.1",
"eslint-plugin-react": "^6.5.0",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.24.1",
"icon-gen": "^1.2.0",
"json-loader": "^0.5.4",
"npm-run-all": "^3.1.1",
"react-hot-loader": "^3.0.0-beta.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.5.0",
"webpack-merge": "^0.15.0"
}
}