-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
107 lines (107 loc) · 3.6 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "pomodorize.me",
"productName": "pomodorize.me",
"version": "1.0.1",
"description": "Pomodoro timer powered by Electron",
"scripts": {
"build": "node tasks/release.js",
"build:clean": "cross-env PLATFORM_TARGET=clean node tasks/release.js",
"build:darwin": "cross-env PLATFORM_TARGET=darwin node tasks/release.js",
"build:linux": "cross-env PLATFORM_TARGET=linux node tasks/release.js",
"build:mas": "cross-env PLATFORM_TARGET=mas node tasks/release.js",
"build:win32": "cross-env PLATFORM_TARGET=win32 node tasks/release.js",
"dev": "node tasks/runner.js",
"dist:linux": "build -l --x64 && build --publish onTag",
"dist:mac": "build -m --x64 && build --publish onTag",
"dist:win": "build -w --x64 && build --publish onTag",
"e2e": "npm run pack && mocha test/e2e",
"lint": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter app test",
"lint:fix": "eslint --ext .js,.vue -f ./node_modules/eslint-friendly-formatter --fix app test",
"pack": "cross-env NODE_ENV=production webpack -p --progress --colors",
"test": "npm run unit && npm run e2e",
"unit": "karma start test/unit/karma.conf.js",
"vue:route": "node tasks/vue/route.js",
"vuex:module": "node tasks/vuex/module.js",
"postinstall": "npm run lint:fix && cd app && npm install"
},
"author": "Adrian Estrada <edsadr@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.8.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"cross-env": "^1.0.7",
"css-loader": "^0.23.1",
"del": "^2.2.1",
"devtron": "^1.1.0",
"electron": "^1.3.1",
"electron-builder": "^10.17.3",
"electron-devtools-installer": "^1.1.4",
"electron-packager": "^8.0.0",
"electron-rebuild": "^1.1.3",
"eslint": "^2.10.2",
"eslint-config-standard": "^5.1.0",
"eslint-friendly-formatter": "^2.0.5",
"eslint-loader": "^1.3.0",
"eslint-plugin-html": "^1.3.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-webpack-plugin": "^2.16.1",
"inject-loader": "^2.0.1",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-electron": "^4.1.1",
"karma-mocha": "^1.2.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"require-dir": "^0.3.0",
"spectron": "^3.4.0",
"style-loader": "^0.13.1",
"tree-kill": "^1.1.0",
"url-loader": "^0.5.7",
"vue-hot-reload-api": "^1.3.2",
"vue-html-loader": "^1.2.2",
"vue-loader": "^9.5.1",
"vue-style-loader": "^1.0.0",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/edsadr/pomodorize.me.git"
},
"build": {
"appId": "com.pomodorize.me",
"description": "Simple and beautiful Pomodoro timer",
"publish": "github",
"linux": {
"description": "Simple and beautiful Pomodoro timer",
"target": [
"tar.gz",
"deb"
]
},
"mac": {
"category": "public.app-category.productivity",
"icon": "app/icons/icon.icns"
},
"win": {
"icon": "app/icons/icon2X.ico"
}
}
}