-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 2.32 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
{
"name": "exosphere",
"version": "2021.01.06",
"productName": "Exosphere",
"description": "A client for making things happen in the cloud. Currently targeting OpenStack.",
"main": "elm-web.js",
"scripts": {
"build:prod": "npx elm make --optimize src/Exosphere.elm --output elm-web.js",
"minify": "npx uglifyjs elm-web.js --compress 'pure_funcs=[F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9],pure_getters,keep_fargs=false,unsafe_comps,unsafe' | npx uglifyjs --mangle --output elm-web.js",
"postinstall": "elm-tooling install && npm run elm:git",
"start": "npm run live",
"elm": "npx elm make src/Exosphere.elm --output=elm-web.js || true",
"live": "npx elm-live src/Exosphere.elm --host app.exosphere.localhost --open --pushstate true --verbose --start-page index.html --hot true -- --output=elm-web.js",
"live-debug": "npx elm-live src/Exosphere.elm --host app.exosphere.localhost --open --pushstate true --verbose --start-page index.html --hot true -- --output=elm-web.js --debug",
"live-design-system": "npx elm-live src/DesignSystem/Explorer.elm --port 8002 --open --start-page=explorer.html -- --output=explorer.js --debug",
"test": "npx elm-test-rs && npx elm-test-rs --project review",
"js:format": "prettier --check .",
"js:typecheck": "tsc",
"elm:format": "npx elm-format --validate src tests review/src review/tests",
"elm:analyse": "npx elm-analyse",
"elm:review": "npx elm-review",
"elm:git": "npx elm-git-install",
"prepare": "command -v pre-commit && pre-commit install || echo 'pre-commit is not installed, see contributing.md'"
},
"author": {
"email": "[email protected]"
},
"license": "BSD-3-Clause",
"build": {
"appId": "exosphere-project.exosphere",
"mac": {
"category": "cloud.client"
}
},
"devDependencies": {
"elm-analyse": "^0.16.5",
"elm-git-install": "^0.1.4",
"elm-live": "^4.0.2",
"elm-review": "^2.10.2",
"elm-tooling": "^1.14.0",
"prettier": "^2.8.8",
"typescript": "^5.3.3",
"uglify-js": "^3.17.4"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/exosphere/exosphere.git"
},
"keywords": [
"elm",
"openstack",
"cloud"
],
"bugs": {
"url": "https://gitlab.com/exosphere/exosphere/issues"
},
"homepage": "https://gitlab.com/exosphere/exosphere#readme"
}