-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1006 Bytes
/
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
{
"name": "elm-set-count",
"version": "1.0.0",
"description": "A simple app for visualizing a set count",
"devDependencies": {
"chokidar-cli": "^2.1.0",
"elm": "^0.19.1-3",
"elm-live": "^4.0.2"
},
"scripts": {
"elm": "elm make src/Main.elm --output index.js --optimize || true",
"elm:live": "elm-live src/Main.elm --open -- --output index.js --optimize || true",
"elm:watch": "chokidar '**/*.elm' -c 'npm run elm'",
"start": "npm run elm & electron main.js",
"watch": "npm run start & npm run elm:watch & wait"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IvantheTricourne/elm-set-count.git"
},
"keywords": [
"set-count",
"elm",
"simple"
],
"author": "Carl Factora",
"license": "ISC",
"bugs": {
"url": "https://github.com/IvantheTricourne/elm-set-count/issues"
},
"homepage": "https://github.com/IvantheTricourne/elm-set-count#readme",
"dependencies": {
"electron": "^10.1.2"
}
}