forked from kehittamo/oluttamo-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.52 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
{
"name": "oluttamo-api",
"version": "1.0.0",
"description": "Node.js API for Oluttamo browser add-ons",
"author": "Janne Saarela / Digitoimisto Kehittämö <janne.saarela@kehittamo.fi>",
"main": "index.js",
"private": false,
"engines": {
"node": "^5.0.0",
"npm": "^3.5.0"
},
"scripts": {
"preinstall": "npm install -g gulp",
"postinstall": "gulp",
"start": "node dist/index.js",
"lint": "gulp lint",
"test": "gulp mocha",
"commit": "git-cz",
"report-coverage": "coveralls < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git@github.com:kehittamo/oluttamo-api.git"
},
"keywords": [
"express",
"node",
"node.js",
"mongodb",
"mongoose",
"es6",
"mocha",
"REST",
"API"
],
"dependencies": {
"async": "^2.0.0",
"bluebird": "^3.1.4",
"body-parser": "^1.14.2",
"compression": "^1.6.1",
"cookie-parser": "^1.4.1",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "~4.14.0",
"express-validation": "^1.0.0",
"express-winston": "^1.2.0",
"html-entities": "^1.2.0",
"http-status": "^0.2.0",
"joi": "^9.0.0",
"lodash": "^4.0.1",
"method-override": "^2.3.5",
"mkdirp": "^0.5.1",
"mongoose": "^4.3.7",
"morgan": "~1.7.0",
"node-cron": "^1.1.1",
"readline": "^1.3.0",
"unzip": "^0.1.11",
"wget-improved": "^1.3.0",
"winston": "^2.1.1"
},
"devDependencies": {
"babel-cli": "6.10.1",
"babel-core": "^6.9.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-2": "6.11.0",
"chai": "^3.4.1",
"commitizen": "2.8.2",
"coveralls": "^2.11.6",
"cz-conventional-changelog": "1.1.6",
"del": "^2.2.0",
"eslint": "^3.0.1",
"eslint-config-airbnb": "9.0.1",
"eslint-plugin-import": "^1.10.2",
"ghooks": "1.3.2",
"gulp": "^3.9.0",
"gulp-babel": "6.1.2",
"gulp-env": "^0.4.0",
"gulp-eslint": "^3.0.1",
"gulp-istanbul": "^1.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^2.2.0",
"gulp-newer": "^1.1.0",
"gulp-nodemon": "^2.0.6",
"gulp-plumber": "^1.0.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-util": "^3.0.7",
"isparta": "4.0.0",
"mocha": "^2.3.4",
"run-sequence": "^1.1.5",
"supertest": "^1.1.0",
"supertest-as-promised": "^3.2.0",
"validate-commit-msg": "2.6.1"
},
"license": "MIT",
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
}
}