-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
68 lines (68 loc) · 1.35 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
68
{
"name": "elm-live",
"version": "4.0.2",
"description": "A flexible dev server for Elm. Live reload included!",
"bin": {
"elm-live": "bin/elm-live.js"
},
"main": "./lib/index.js",
"dependencies": {
"chalk": "^2.0.0",
"chokidar": "3.0.2",
"commander": "2.17.1",
"crocks": "0.12.1",
"cross-spawn": "5.0.1",
"elm-hot": "1.1.4",
"finalhandler": "1.1.2",
"http-proxy": "1.18.1",
"internal-ip": "4.3.0",
"mime": "2.4.3",
"open": "6.4.0",
"pem": "1.14.2",
"serve-static": "1.14.1",
"ws": "7.1.1"
},
"scripts": {
"format": "npm run standard:fix && npm run standard",
"standard": "standard",
"standard:fix": "standard --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run format"
}
},
"standard": {
"ignore": [
"websocket.js",
"www/"
]
},
"engines": {
"node": ">= 10.0.0"
},
"engineStrict": true,
"files": [
"lib/index.js",
"lib/src/**/*.js",
"bin/elm-live.js",
"License.md"
],
"license": "MIT",
"keywords": [
"cli",
"tool",
"elm"
],
"author": "William King <contact@wking.dev>",
"repository": {
"type": "git",
"url": "git@github.com:wking-io/elm-live"
},
"devDependencies": {
"eslint": "7.3.1",
"eslint-plugin-import": "2.14.0",
"husky": "2.3.0",
"standard": "12.0.1"
}
}