This repository was archived by the owner on Oct 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.07 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.07 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "Pomojo",
"version": "0.0.2",
"description": "Pomodoro app to make work joyful",
"main": "dist/main/index.js",
"scripts": {
"start": "electron .",
"build": "webpack",
"dev": "webpack --watch",
"package": "electron-packager . Pomojo --overwrite --platform=darwin --arch=x64 --icon='assets/icon.icns' --ignore='src' --ignore='coverage' --app-bundle-id='pomojo' --out='build'",
"lint": "xo --silent",
"fix": "xo --fix",
"test": "npm run lint && npm run e2e && npm run unit",
"e2e": "NODE_ENV=test ELECTRON_IS_DEV=false ava e2e/**/*.test.js",
"unit": "NODE_ENV=test ELECTRON_IS_DEV=false jest",
"watch": "NODE_ENV=test ELECTRON_IS_DEV=false jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yo7/pomojo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yo7/pomojo/issues"
},
"homepage": "https://github.com/yo7/pomojo#readme",
"xo": {
"extensions": [
"vue"
],
"plugins": [
"html"
],
"envs": [
"node",
"browser",
"jest"
],
"space": true,
"semicolon": false,
"rules": {
"no-new": 0,
"import/no-unresolved": 0,
"import/no-unassigned-import": 0,
"no-use-before-define": [
"error",
{
"functions": false,
"classes": true,
"variables": false
}
]
}
},
"jest": {
"setupTestFrameworkScriptFile": "./scripts/jest-setup.js",
"testRegex": "src/.*.spec.js$",
"moduleFileExtensions": [
"js",
"vue"
],
"transform": {
"^.+\\.js$": "./node_modules/babel-jest",
".*\\.(vue)$": "./node_modules/jest-vue"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
]
},
"ava": {
"babel": "inherit",
"require": [
"babel-register",
"babel-polyfill"
]
},
"devDependencies": {
"ava": "^0.22.0",
"babel-core": "^6.25.0",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.7",
"devtron": "^1.4.0",
"electron": "^1.7.8",
"electron-devtools-installer": "^2.2.1",
"eslint-plugin-html": "^3.2.2",
"file-loader": "^1.1.5",
"font-awesome": "^4.7.0",
"font-awesome-webpack": "0.0.5-beta.2",
"jest": "^21.2.0",
"jest-serializer-vue": "^0.2.0",
"jest-vue": "^0.8.1",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6",
"spectron": "^3.7.2",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"vue-loader": "^13.3.0",
"vue-server-renderer": "^2.5.2",
"vue-template-compiler": "^2.5.2",
"vue-test-utils": "^1.0.0-beta.2",
"webpack": "^3.8.1",
"xo": "^0.18.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"date-fns": "^1.29.0",
"electron-is-dev": "^0.3.0",
"electron-packager": "^9.1.0",
"nedb": "^1.8.0",
"vue": "^2.5.2",
"vue-router": "^3.0.1",
"vue-template": "^1.0.3",
"vuex": "^3.0.0"
}
}