-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.39 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.39 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "gomake-api",
"version": "1.0.0",
"description": "The goMake Flight API provides flight related information and realtime telemetry data for goMake high altitude balloon and other project launches.The goMake Flight API uses JWT to provide authorization to a client with a valid API Key. The API is currently in alpha mode and API Keys must be requested via email to team@gomake.io.",
"author": "Jonathan Barton <> ,Morris Singer <>,Neha Abrol <nehaabrol87@gmail.com>",
"main": "index.js",
"private": false,
"engines": {
"node": "4.4.x",
"npm": "3.9.x"
},
"scripts": {
"start": "gulp serve",
"build": "gulp",
"lint": "gulp lint",
"test": "gulp unit",
"report-coverage": "coveralls < ./coverage/lcov.info",
"prepush": "npm test"
},
"repository": {
"type": "git",
"url": "git@github.com:GoMake/gomake-api.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"mocha",
"istanbul",
"REST",
"API",
"boilerplate"
],
"dependencies": {
"bluebird": "^3.1.4",
"body-parser": "^1.15.2",
"compression": "^1.6.1",
"connect-ensure-login": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.7.1",
"debug": "^2.2.0",
"dotenv": "2.0.0",
"express": "4.14.0",
"express-jwt": "^3.4.0",
"express-session": "^1.14.2",
"express-validation": "1.0.0",
"express-winston": "^1.2.0",
"helmet": "2.1.1",
"http-status": "^0.2.0",
"jade": "^1.11.0",
"joi": "8.4.2",
"jsonwebtoken": "7.1.9",
"lodash": "^4.17.2",
"method-override": "^2.3.5",
"mongoose": "^4.3.7",
"mongoose-geojson-schema": "^2.1.2",
"morgan": "1.7.0",
"node-cache": "^4.1.0",
"passport": "^0.3.2",
"passport-auth0": "^0.6.0",
"path": "^0.12.7",
"restler": "^3.4.0",
"serve-static": "^1.11.1",
"superagent": "^3.5.2",
"superagent-prefix": "0.0.2",
"winston": "^2.1.1"
},
"devDependencies": {
"assert": "^1.4.1",
"babel-cli": "6.5.1",
"babel-core": "^6.9.1",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.5.0",
"babel-preset-stage-2": "6.5.0",
"chai": "^3.4.1",
"chalk": "^1.1.3",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "1.1.5",
"del": "^2.2.0",
"dockerode": "^2.3.1",
"eslint": "^1.10.3",
"eslint-config-airbnb": "5.0.1",
"fstream": "^1.0.10",
"gomake-mock-data": "~0.0.9",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-env": "^0.4.0",
"gulp-eslint": "^1.1.1",
"gulp-istanbul": "1.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.2.0",
"gulp-mongo-populator": "^1.0.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-tar": "^1.9.0",
"gulp-util": "^3.0.7",
"husky": "^0.11.8",
"isparta": "4.0.0",
"mocha": "2.5.3",
"mockgoose": "^6.0.8",
"rewire": "^2.5.2",
"run-sequence": "^1.1.5",
"sinon": "^1.17.6",
"sinon-as-promised": "^4.0.2",
"sinon-mongoose": "^1.3.0",
"sinon-stub-promise": "^3.0.1",
"supertest": "^1.1.0",
"supertest-as-promised": "3.1.0",
"tar": "^2.2.1",
"url": "^0.11.0",
"validate-commit-msg": "^2.6.1"
},
"license": "GOMAKE",
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}