tooty/package.json
Nicolas Perriault f03bd90a21 First working prototype. (#1)
* Implement OAuth2 authentication flow.
* Boostrap styling
* @vjousse review.
2017-04-20 09:33:32 +02:00

32 lines
950 B
JSON

{
"name": "tooty",
"version": "1.0.0",
"description": "An alternative Web client for Mastodon.",
"scripts": {
"build": "node_modules/.bin/elm-make Main.elm --output=build/app.js && npm run copy-assets",
"copy-assets": "node_modules/.bin/copyfiles index.html style.css build/",
"deploy": "npm run build && node_modules/.bin/gh-pages --dist build/",
"live": "node_modules/.bin/elm-live Main.elm --output=app.js --debug",
"test": "echo \"Error: no test specified\" && exit 1"
},
"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": {
"copyfiles": "^1.2.0",
"elm": "^0.18.0",
"elm-live": "^2.7.4",
"gh-pages": "^0.12.0"
}
}