forked from wulkano/Kap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.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
108
109
110
111
112
113
114
115
116
117
{
"scripts": {
"test": "xo",
"start": "electron app",
"build": "npm run test && gulp build",
"watch": "gulp dev --continue",
"dev": "gulp build && run-p start watch",
"dist": "npm run build && build",
"pack": "npm run build && build --dir",
"postinstall": "electron-builder install-app-deps",
"prepush": "npm run test"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-stage-3": "^6.24.1",
"cssnano": "^3.10.0",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^1.7.11",
"electron-builder": "^19.55.2",
"electron-react-devtools": "^0.5.2",
"gulp": "^4.0.0",
"gulp-babel": "^7.0.0",
"gulp-filter": "^5.0.1",
"gulp-inject-svg": "^0.1.16",
"gulp-postcss": "^7.0.0",
"gulp-pug": "^3.3.0",
"gulp-stylelint": "^6.0.0",
"husky": "^0.14.3",
"npm-run-all": "^4.1.2",
"postcss-each": "^0.10.0",
"postcss-extend": "^1.0.5",
"postcss-import": "^11.0.0",
"postcss-nested": "^3.0.0",
"postcss-reporter": "^5.0.0",
"postcss-simple-vars": "^4.1.0",
"stylelint": "^8.4.0",
"stylelint-config-xo-space": "^0.4.0",
"xo": "^0.18.2"
},
"xo": {
"space": 2,
"envs": [
"node",
"browser"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"import/named": 0,
"import/default": 0
},
"ignores": [
"app/dist/**"
]
},
"stylelint": {
"extends": "stylelint-config-xo-space",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extend",
"each"
]
}
],
"no-descending-specificity": null,
"declaration-no-important": null,
"property-no-vendor-prefix": null,
"declaration-property-value-blacklist": null
}
},
"build": {
"appId": "com.wulkano.kap",
"files": [
"**/*",
"dist",
"!src"
],
"mac": {
"category": "public.app-category.productivity",
"minimumSystemVersion": "10.12.0"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
},
"babel": {
"presets": [
"stage-3"
],
"plugins": [
"transform-es2015-modules-commonjs",
[
"transform-class-properties",
{
"spec": true
}
]
]
}
}