-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 903 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
36
{
"name": "elm-type-directed-autocomplete",
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:kirchner/elm-type-directed-autocomplete.git",
"author": "Fabian Kirchner <kirchner@posteo.de>",
"license": "Apache-2.0",
"scripts": {
"web": "elm make --output=elm.js src/Main.elm",
"elm": "elm make --optimize src/Worker.elm --output lib/elm.js",
"prepublishOnly": "npm run elm"
},
"bin": {
"elm-autocomplete": "bin/elm-autocomplete"
},
"dependencies": {
"bluebird": "^3.5.1",
"chokidar": "^3.0.2",
"fs-extra": "^6.0.1",
"klaw": "^2.1.1",
"minimist": "^1.2.0",
"semver-sort": "0.0.4",
"through2": "^2.0.3"
},
"devDependencies": {
"elm": "^0.19.0-bugfix6",
"elm-doc-preview": "^2.0.3",
"elm-hot": "^1.0.1",
"elm-test": "^0.19.0-rev4",
"parcel": "^1.10.3"
},
"files": [
"bin",
"lib"
]
}