1
0
Fork 0
tooty/package.json

36 lines
1.2 KiB
JSON
Raw Normal View History

{
"name": "tooty",
"version": "1.0.0",
"description": "An alternative Web client for Mastodon.",
"scripts": {
2017-05-04 03:18:13 -04:00
"build": "npm run copy-assets && node_modules/.bin/elm-make src/Main.elm --output=build/app.js",
2017-04-30 06:56:09 -04:00
"copy-assets": "rimraf build && mkdir build && cp -r public/* build",
2017-04-30 09:05:44 -04:00
"debug": "node_modules/.bin/elm-live src/Main.elm --warn --dir=public/ --output=public/app.js --debug",
2017-05-08 07:08:51 -04:00
"deploy": "npm run build && npm run optimize && node_modules/.bin/gh-pages --dist build/",
"optimize": "node_modules/.bin/uglifyjs build/app.js -c -m -o build/app.js",
2017-04-30 09:05:44 -04:00
"start": "node_modules/.bin/elm-live src/Main.elm --warn --dir=public/ --output=public/app.js",
2017-04-25 10:27:15 -04:00
"test": "node_modules/.bin/elm-test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/n1k0/tooty.git"
},
"keywords": [
"mastodon"
],
"author": "n1k0 <nicolas@perriault.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/n1k0/tooty/issues"
},
"homepage": "https://github.com/n1k0/tooty#readme",
"devDependencies": {
"elm": "^0.18.0",
"elm-live": "^2.7.4",
"elm-test": "^0.18.13",
2017-04-30 06:56:09 -04:00
"gh-pages": "^0.12.0",
2017-05-08 07:08:51 -04:00
"rimraf": "^2.6.1",
"uglify-js": "^3.15.3"
}
}