forked from wulkano/Kap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 2.4 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
{
"scripts": {
"test": "xo",
"build": "npm run test && gulp build",
"dev": "gulp dev --continue",
"app": "electron app",
"start": "npm run app",
"dist": "npm run build && build",
"pack": "npm run build && build --dir",
"postinstall": "electron-builder install-app-deps && npm run ffmpeg",
"prepush": "npm run test",
"ffmpeg": "node scripts/download-ffmpeg.js"
},
"devDependencies": {
"babel-core": "6.26.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"chalk": "2.3.0",
"cssnano": "3.10.0",
"del": "3.0.0",
"electron": "1.7.9",
"electron-builder": "19.43.0",
"execa": "0.8.0",
"got": "7.1.0",
"gulp": "gulpjs/gulp#4.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": "5.0.0",
"husky": "0.14.3",
"ora": "1.3.0",
"postcss-each": "0.10.0",
"postcss-extend": "1.0.5",
"postcss-import": "11.0.0",
"postcss-nested": "2.1.2",
"postcss-reporter": "5.0.0",
"postcss-simple-vars": "4.1.0",
"stylelint": "8.2.0",
"stylelint-config-xo-space": "^0.2.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,
"value-no-vendor-prefix": null,
"declaration-property-value-blacklist": null
}
},
"build": {
"asar": false,
"appId": "com.wulkano.kap",
"files": [
"**/*",
"dist",
"!src"
],
"mac": {
"category": "public.app-category.productivity"
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}