This repository was archived by the owner on Jun 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.37 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": "sagittarius",
"version": "1.0.0",
"description": "ChatWork Client for Desktop.",
"main": "app/main.js",
"private": true,
"scripts": {
"testCompile": "gulp build:test && grep -l '..\\/src' ./test/*.js | xargs sed -i.bak -e 's/..\\/src/..\\/app/g' && rm ./test/*.bak",
"prelocaltest": "npm run testCompile",
"localtest": "istanbul test _mocha -- test",
"pretest": "npm run testCompile",
"test": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"prepack": "set NODE_ENV=production && gulp build:main",
"pack": "set NODE_ENV=production && electron-packager . Sagittarius --platform=all --arch=x64 --version=0.36.1 --out=dist --ignore={.vscode,bin,dist,src,screenshots,test,tmp}/* --prune=true --asar=true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuyuno/Sagittarius.git"
},
"keywords": [
"ChatWork",
"Client"
],
"author": "Mikazuki",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuyuno/Sagittarius/issues"
},
"homepage": "https://github.com/fuyuno/Sagittarius#readme",
"dependencies": {
"babel-polyfill": "^6.3.14",
"ix": "^1.0.6",
"jquery": "^3.1.0",
"node-notifier": "^4.4.0",
"punycode": "^2.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.0",
"redux": "^3.3.1",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.0",
"rx": "^4.0.7",
"semantic-ui": "^2.1.8"
},
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-3": "^6.3.13",
"browserify": "^13.0.0",
"coveralls": "^2.11.8",
"del": "^2.2.0",
"electron-connect": "^0.4.2",
"electron-packager": "^7.0.0",
"electron-prebuilt": "^1.3.1",
"envify": "^3.4.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.1",
"gulp-plumber": "^1.0.1",
"gulp-sass": "^2.1.1",
"gulp-typescript": "^2.10.0",
"gulp-useref": "^3.0.8",
"gulp-watch": "^4.3.5",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"run-sequence": "^1.1.5",
"should": "^10.0.0",
"stringify": "^5.1.0",
"tslint": "^3.7.4",
"typescript": "^1.8.10",
"typescript-node": "^0.1.3",
"typescript-require": "^0.2.9-1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}