-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.18 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
{
"name": "schedulemaster-api",
"version": "1.0.0",
"engines": {
"node": "8.1.4"
},
"description": "Screen-scraping API for Schedule Master",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/jonscheiding/schedulemaster-api"
},
"scripts": {
"test": "npm run test:lint; npm run test:mocha",
"test:lint": "eslint .",
"test:mocha": "LOG_LEVEL=FATAL mocha",
"test:newman": "newman run https://www.getpostman.com/collections/f72792864ca403d39691 -e .env.newman",
"start": "rm logs/*.log; nodemon -e js,mustache index.js | bunyan"
},
"author": "Jon Scheiding",
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-spies": "^0.7.1",
"eslint": "^3.4.0",
"mocha": "^3.0.2",
"mocha-logger": "^1.0.4",
"newman": "^3.1.0",
"nock": "^8.0.0"
},
"dependencies": {
"app-module-path": "^1.1.0",
"array-sugar": "^1.2.2",
"array-wrap": "0.0.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"babel-register": "^6.14.0",
"body-parser": "^1.15.2",
"bunyan": "^1.8.1",
"bunyan-middleware": "^0.4.0",
"cheerio": "^0.22.0",
"connect-ensure-login": "^0.1.1",
"css-loader": "^0.25.0",
"deep-extend": "^0.4.1",
"deepmerge": "^0.2.10",
"envalid": "^2.2.0",
"express": "^4.14.0",
"express-bearer-token": "^2.1.0",
"express-session": "^1.14.1",
"express-sslify": "^1.2.0",
"file-loader": "^0.9.0",
"json-mapper": "0.0.10",
"jsonwebtoken": "^7.1.9",
"materialize-css": "^0.97.7",
"mustache": "^2.2.1",
"mustache-express": "^1.2.2",
"node-sass": "^3.10.0",
"nodemon": "^1.10.2",
"oauth2orize": "^1.5.0",
"object-encrypter": "^0.1.3",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"request": "^2.74.0",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.8.3",
"yup": "^0.21.1"
},
"directories": {
"test": "test"
}
}