forked from wulkano/Kap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.52 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
{
"repository": "wulkano/kap",
"author": "Wulkano AS <[email protected]> (https://wulka.no/)",
"license": "MIT",
"scripts": {
"test": "xo",
"build": "npm run test && gulp build",
"watch": "gulp watch",
"start": "electron app",
"dist": "npm run build && build",
"pack": "npm run build && build --dir",
"postinstall": "install-app-deps && npm run ffmpeg",
"prepush": "npm run test",
"ffmpeg": "node scripts/download-ffmpeg.js"
},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.16.0",
"chalk": "^1.1.3",
"cssnano": "^3.7.7",
"electron": "^1.4.3",
"electron-builder": "^7.11.4",
"execa": "^0.5.0",
"got": "^6.5.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-inject-svg": "^0.1.9",
"gulp-postcss": "^6.2.0",
"gulp-pug": "^3.1.0",
"husky": "^0.11.9",
"ora": "^0.3.0",
"postcss-extend": "^1.0.5",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^3.0.0",
"xo": "^0.17.0"
},
"xo": {
"space": 2,
"esnext": true,
"envs": [
"node",
"browser"
],
"rules": {
"import/no-extraneous-dependencies": 0,
"import/named": 0,
"import/default": 0
},
"ignores": [
"app/dist/**"
]
},
"build": {
"asar": false,
"appId": "com.wulkano.kap",
"category": "public.app-category.productivity",
"files": [
"**/*",
"!src",
"!main.js"
]
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
}
}