elm-spa/cli/package.json

34 lines
773 B
JSON
Raw Normal View History

2019-11-13 03:27:56 +03:00
{
"name": "elm-spa",
2020-03-27 07:43:08 +03:00
"version": "4.0.0",
"description": "single page apps made easy",
"main": "index.js",
"bin": "./index.js",
"directories": {
"test": "tests"
},
2019-11-13 03:27:56 +03:00
"scripts": {
2020-03-27 07:43:08 +03:00
"build": "elm make src/Main.elm --optimize --output dist/elm.worker.js",
"test": "elm-test",
"test:watch": "elm-test --watch",
2020-03-27 07:43:08 +03:00
"dev": "chokidar src -c \"(npm run build || true)\""
2019-11-13 03:27:56 +03:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryannhg/elm-spa.git"
},
"keywords": [
"elm",
"spa",
2020-03-27 07:43:08 +03:00
"web",
2019-11-13 03:27:56 +03:00
"framework"
],
"author": "Ryan Haskell-Glatz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryannhg/elm-spa/issues"
},
"homepage": "https://github.com/ryannhg/elm-spa#readme",
2020-03-27 07:43:08 +03:00
"dependencies": {}
2019-11-13 03:27:56 +03:00
}