forked from wulkano/Kap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.03 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
{
"repository": "wulkano/kap",
"author": "Wulkano AS <team@wulka.no> (https://wulka.no/)",
"license": "MIT",
"scripts": {
"test": "xo",
"build": "npm run test && gulp build",
"dev": "webpack --watch --progress",
"app": "electron app/dist/main.bundle.js",
"start": "npm run app",
"dist": "npm run build && build",
"pack": "npm run build && build --dir",
"postinstall": "install-app-deps && npm run ffmpeg && npm run electron",
"prepush": "npm run test",
"ffmpeg": "node scripts/download-ffmpeg.js",
"electron": "node scripts/download-electron.js"
},
"devDependencies": {
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-commonjs": "6.16.0",
"babel-preset-react": "^6.22.0",
"chalk": "1.1.3",
"css-loader": "^0.26.1",
"cssnano": "3.7.7",
"del": "2.2.2",
"eightpoint": "0.0.1",
"electron": "1.4.8",
"electron-builder": "7.11.4",
"execa": "0.5.0",
"got": "6.5.0",
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "6.1.2",
"gulp-inject-svg": "0.1.9",
"gulp-postcss": "6.2.0",
"gulp-pug": "3.1.0",
"html-webpack-plugin": "^2.28.0",
"husky": "0.11.9",
"ora": "0.3.0",
"postcss-extend": "1.0.5",
"postcss-import": "8.1.2",
"postcss-loader": "^1.2.2",
"postcss-nested": "1.0.0",
"postcss-reporter": "2.0.0",
"postcss-simple-vars": "3.0.0",
"pug-loader": "^2.3.0",
"webpack": "2.2.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"
],
"electronDist": "node_modules/electron/dist"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"dependencies": {}
}