summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorgumi <git@gumi.ca>2018-03-29 15:21:03 -0400
committergumi <git@gumi.ca>2018-04-01 10:33:52 -0400
commit4263446107b856aad27232713c2f88e398c78a7f (patch)
treeaa740358016bba855d7e3624b893c588a28896b5 /package.json
parent3ae54ef5e1443ded92f0a5b93bd542873ec8656f (diff)
downloadapi-4263446107b856aad27232713c2f88e398c78a7f.tar.gz
api-4263446107b856aad27232713c2f88e398c78a7f.tar.bz2
api-4263446107b856aad27232713c2f88e398c78a7f.tar.xz
api-4263446107b856aad27232713c2f88e398c78a7f.zip
fix a few issues with sql
Diffstat (limited to 'package.json')
-rw-r--r--package.json37
1 files changed, 23 insertions, 14 deletions
diff --git a/package.json b/package.json
index 006dca5..2c2a535 100644
--- a/package.json
+++ b/package.json
@@ -1,16 +1,25 @@
{
- "name": "tmw-api",
- "version": "0.1.0",
- "description": "TMW RESTful API",
- "main": "server.js",
- "scripts": {
- "test": "echo \"Error: no test specified\" && exit 1"
- },
- "author": "The Mana World",
- "license": "ISC",
- "dependencies": {
- "body-parser": "^1.18.2",
- "express": "^4.16.3",
- "mysql": "^2.15.0"
- }
+ "name": "tmw-api",
+ "version": "0.1.0",
+ "description": "TMW RESTful API",
+ "author": "The Mana World",
+ "license": "CC0-1.0",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/themanaworld/api.git"
+ },
+ "bugs": {
+ "url": "https://github.com/themanaworld/api/issues"
+ },
+ "main": "server.js",
+ "private": true,
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1",
+ "start": "node server.js"
+ },
+ "dependencies": {
+ "body-parser": "^1.18.2",
+ "express": "^4.16.3",
+ "mysql": "^2.15.0"
+ }
}