summaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2017-03-16 15:50:10 +0100
committerJules Laplace <jules@okfoc.us>2017-03-16 15:50:10 +0100
commit8e05164678d302700c794feecd50d83357f7719d (patch)
treeed5b167c75a2c4fdb5dcd8c409094b607698a0d5 /package.json
parentb8bfbbe14bdb72e4feccb4652c48f4cdb2a5e199 (diff)
feathers stuff
Diffstat (limited to 'package.json')
-rw-r--r--package.json50
1 files changed, 42 insertions, 8 deletions
diff --git a/package.json b/package.json
index 6d3cced..643d501 100644
--- a/package.json
+++ b/package.json
@@ -1,15 +1,49 @@
{
"name": "toptal-calorie-counter",
+ "description": "calorie counter assignment",
"version": "1.0.0",
- "description": "toptal calorie counter",
- "main": "index.js",
+ "homepage": "",
+ "main": "src/",
+ "keywords": [
+ "feathers"
+ ],
+ "license": "MIT",
+ "repository": {},
+ "author": {},
+ "contributors": [],
+ "bugs": {},
+ "engines": {
+ "node": ">= 0.12.0"
+ },
"scripts": {
- "test": "mocha -R spec"
+ "test": "npm run jshint && npm run mocha",
+ "jshint": "jshint src/. test/. --config",
+ "start": "node src/",
+ "mocha": "mocha test/ --recursive"
},
- "repository": {
- "type": "git",
- "url": "git@git.toptal.com:eluttner/julian-laplace.git"
+ "dependencies": {
+ "body-parser": "^1.17.1",
+ "compression": "^1.6.2",
+ "cors": "^2.8.1",
+ "feathers": "^2.1.1",
+ "feathers-authentication": "^0.7.12",
+ "feathers-configuration": "^0.3.3",
+ "feathers-errors": "^2.6.1",
+ "feathers-hooks": "^1.8.1",
+ "feathers-rest": "^1.7.1",
+ "feathers-sequelize": "^1.4.2",
+ "mysql": "^2.13.0",
+ "passport": "^0.3.2",
+ "promise-or": "^1.0.0",
+ "sequelize": "^3.30.2",
+ "serve-favicon": "^2.4.1",
+ "winston": "^2.3.1"
},
- "author": "jules laplace <julescarbon@gmail.com>",
- "license": "UNLICENSED"
+ "devDependencies": {
+ "chai": "^3.5.0",
+ "chai-http": "^3.0.0",
+ "jshint": "^2.9.4",
+ "mocha": "^3.2.0",
+ "request": "^2.81.0"
+ }
}