-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 904 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
{
"name": "elm-starter",
"version": "1.0.1",
"description": "A place to start with Elm",
"main": "index.js",
"scripts": {
"test": "echo 'No tests, sorry!'",
"build": "elm make --yes src/Main.elm --output public/built/index.js",
"watch": "nodemon --watch src --ext elm --exec 'npm run -s build'",
"serve": "cd public && browser-sync start --server --files \"built/*.js, *.css\"",
"start": "run-p serve watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/splodingsocks/elm-starter.git"
},
"author": "Murphy Randle",
"license": "MIT",
"bugs": {
"url": "https://github.com/splodingsocks/elm-starter/issues"
},
"homepage": "https://github.com/splodingsocks/elm-starter#readme",
"dependencies": {},
"devDependencies": {
"browser-sync": "2.12.8",
"elm": "0.18.0",
"nodemon": "1.9.2",
"npm-run-all": "2.1.0"
}
}