-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 907 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 907 Bytes
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
{
"name": "gaia-gateway",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc --reporter=text mocha src/test --exit",
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/BotGaia/Gaia-Gateway.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/BotGaia/Gaia-Gateway/issues"
},
"homepage": "https://github.com/BotGaia/Gaia-Gateway#readme",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"express": "^4.17.1",
"mocha": "^6.0.2",
"sinon": "^7.3.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"nyc": "^14.1.0"
}
}