-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.19 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
{
"name": "tweet-rec",
"version": "1.0.0",
"description": "Tweet recording player by electron",
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/midnightSuyama/tweet-rec.git"
},
"scripts": {
"browserify": "npm run browserify:main && npm run browserify:renderer && npm run vendor",
"browserify:main": "browserify --im --no-detect-globals --node dist/main.js | uglifyjs -o dist/main.js --comments",
"browserify:renderer": "browserify --im --no-detect-globals --node dist/app.js | uglifyjs -o dist/app.js --comments",
"compile": "gulp compile",
"package": "npm run compile && npm run browserify && electron-packager . tweet-rec --platform=win32,darwin --arch=x64 --version 0.36.7 --out release --app-version 1.0.0 --icon res/icon --ignore '^/(src|test|node_modules|release)/' --asar --asar-unpack-dir vendor --overwrite",
"start": "electron .",
"test": "mocha --compilers js:babel-register $(find test -name *.test.js)",
"vendor": "cp -r node_modules/node-notifier/vendor .",
"watch": "gulp watch"
},
"author": "midnightSuyama",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.5.2",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"electron-packager": "^5.2.1",
"electron-prebuilt": "^0.36.7",
"faker": "^3.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-concat": "^2.6.0",
"gulp-minify-html": "^1.0.5",
"gulp-mocha": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-riot": "^0.4.5",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^1.5.2",
"mocha": "^2.4.5",
"rewire": "^2.5.1",
"rosie": "^1.3.0",
"uglify-js": "^2.6.1"
},
"dependencies": {
"bluebird": "^3.3.1",
"cron": "^1.1.0",
"csv": "^0.4.6",
"dotenv": "^2.0.0",
"event-stream": "^3.3.2",
"gsap": "^1.18.2",
"mkdirp": "^0.5.1",
"moment": "^2.11.2",
"node-notifier": "^4.5.0",
"oauth": "^0.9.14",
"redux": "^3.3.1",
"redux-actions": "^0.9.1",
"riot": "^2.3.15",
"shortid": "^2.2.4",
"twitter": "^1.2.5",
"twitter-text": "^1.13.3"
}
}