-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.13 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
{
"name": "elm-desktop-app",
"version": "1.0.0",
"description": "the simplest way to write desktop applications in Elm",
"scripts": {
"test": "elm-test && ./$npm_package_bin_elm_desktop_app build example && cucumber-js && npm run-script check",
"check": "elm make --docs=docs.json && elm-format --validate example src",
"start": "./$npm_package_bin_elm_desktop_app run example"
},
"files": [
"src",
"template",
"cli.js",
"config.schema.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/avh4/elm-desktop-app.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/avh4/elm-desktop-app/issues"
},
"homepage": "https://github.com/avh4/elm-desktop-app#readme",
"bin": {
"elm-desktop-app": "cli.js"
},
"devDependencies": {
"cucumber": "^6.0.5",
"elm": "^0.19.0",
"elm-format": "^0.8.4",
"elm-test": "^0.19.1-revision4",
"expect": "^26.6.2",
"jasmine-expect": "^5.0.0",
"spectron": "^13.0.0"
},
"dependencies": {
"ajv": "^6.12.6",
"mngen": "^1.1.0",
"shelljs": "^0.8.4"
}
}