-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
{
"private": true,
"name": "saffire-mixer-ui",
"displayName": "Focusrite Saffire LE mixer UI",
"version": "1.0.2",
"description": "UI",
"scripts": {
"postinstall": "electron-builder install-app-deps && bin/install-purescript && [ -n \"$DONT_RUN_BOWER_INSTALL\" ] || psc-package install",
"clean": "rm -rf output",
"prepl": "pulp --psc-package repl",
"build": "pulp --psc-package build && bin/purs-browserify Main output/bundle.js",
"ptest": "pulp --psc-package test",
"pscide": "psc-package sources | xargs purs ide server --log-level=debug 'src/**/*.purs' 'test/**/*.purs'",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"publish": "electron-builder --publish always"
},
"author": "Kamil Figiela <[email protected]>",
"dependencies": {
"autoprefixer": "^9.4.0",
"browserify": "^16.2.3",
"browserify-incremental": "^3.1.1",
"es6-shim": "^0.35.4",
"firebase": "^5.5.1",
"material-components-web": "^0.44.0",
"node-sass": "^4.12.0",
"postcss-cli": "^6.0.1"
},
"main": "main.js",
"devDependencies": {
"async-sema": "3.0.0",
"electron": "11.0.3",
"electron-builder": "^22.1.0",
"eslint": "^6.3.0",
"grpc": "^1.24.2",
"livereload": "^0.7.0",
"mocha": "^6.2.0",
"nodemon": "^1.18.0",
"pulp": "^12.3.0",
"purescript-psa": "^0.7.3"
},
"build": {
"asar": false,
"npmRebuild": false,
"appId": "kfigiela.saffire-le-mixer",
"productName": "Saffire LE Mixer",
"copyright": "Copyright © 2019-2020 Kamil Figiela",
"mac": {
"category": "public.app-category.productivity",
"target": "default",
"binaries": [
"app/saffire-mixer"
],
"publish": [
"github"
],
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"identity": null
},
"directories": {
"app": "app"
}
}
}