-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "gsuite-wrapper",
"version": "1.3.1",
"description": "API that wrap functionality of G Suite",
"author": "Fabrizio Bellicano <github.com/linuxbandit>",
"license": "Apache-2.0",
"repository": "AEGEE/gsuite-wrapper",
"main": "lib/server.js",
"scripts": {
"start": "node lib/run.js",
"test": "export NODE_ENV=test; nyc --cache --reporter=none mocha",
"posttest": "nyc report --reporter=html --reporter=text; echo 'time to get scared.. run <npm run lint>'",
"lint": "eslint .",
"prepare": "husky install"
},
"dependencies": {
"body-parser": "^1.20.2",
"config": "^3.3.10",
"express": "^4.19.2",
"express-promise-router": "^4.1.1",
"googleapis": "^131.0.0",
"ioredis": "^5.3.2",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"winston": "^3.11.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.3.10",
"commitlint": "^18.4.4",
"conventional-changelog": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-mocha": "^10.4.1",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mocha-istanbul": "^0.3.0",
"moment": "^2.30.1",
"nyc": "^15.1.0",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"semantic-release": "^22.0.12"
}
}