-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
91 lines (91 loc) · 2.49 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "employee-scheduling-api",
"version": "0.0.0",
"description": "An API component for Employee Scheduling application that makes employee scheduling management easy, fast and mobile.",
"author": {
"name": "Martin Micunda",
"url": "http://martinmicunda.com"
},
"main": "index.js",
"scripts": {
"start": "node -r babel/register index",
"babel": "babel 'lib index.js' --out-dir dist --source-maps",
"prod": "node ./dist/index",
"dev": "nodemon -L --watch 'lib/**/*' --watch 'index.js' --ext 'js json' --exec 'npm start'",
"debug": "npm run start-dev -- --debug",
"lint": "jshint lib/**/*.js",
"clean": "rm -rvf dist",
"audit": "nsp audit-shrinkwrap && nsp audit-package",
"missing": "npm ls --depth 1",
"outdated": "npm outdated --depth 0",
"prepush": "npm shrinkwrap",
"pretest": "npm run lint",
"test-integ": "newman -c ./EmployeeScheduling.json.postman_collection -f Test -e ./LOCALHOST.postman_environment",
"postmerge": "npm install",
"seed": "node -r babel/register ./lib/config/seed.js",
"setup": "node -r babel/register ./lib/config/setup.js"
},
"pre-commit": [
"lint",
"audit",
"missing",
"outdated"
],
"repository": {
"type": "git",
"url": "https://github.com/martinmicunda/employee-scheduling-api"
},
"bugs": {
"url": "https://github.com/martinmicunda/employee-scheduling-api/issues"
},
"files": [
"lib/",
"index.js",
"LICENSE",
"README.md"
],
"keywords": [
"employee scheduling",
"scheduler",
"mm",
"es6"
],
"dependencies": {
"joi": "7.0.0",
"path": "0.12.7",
"glob": "5.0.15",
"boom": "3.0.0",
"koa": "1.0.0",
"koa-body": "1.3.0",
"koa-cors": "0.0.16",
"koa-mount": "1.3.0",
"koa-helmet": "0.2.0",
"koa-logger": "1.3.0",
"koa-jwt": "1.1.1",
"koa-joi-router": "git+https://[email protected]/martinmicunda/koa-joi-router.git",
"koa-response-time": "1.0.2",
"koa-methodoverride": "1.0.0",
"request-promise": "1.0.1",
"couchbase": "2.1.2",
"node-uuid": "1.4.3",
"mm-node-logger": "0.0.*",
"nodemailer": "1.10.0",
"nodemailer-sendgrid-transport": "0.2.0",
"dotenv": "1.2.0",
"bluebird": "2.10.2",
"moment": "2.10.6",
"koa-i18n": "1.1.2"
},
"devDependencies": {
"nsp": "1.1.0",
"jshint": "2.7.0",
"nodemon": "1.8.1",
"babel": "5.8.23",
"newman": "1.2.23"
},
"license": "GPL-3.0",
"engines": {
"node": ">=0.12.x",
"npm": ">=2.x"
}
}