-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
40 lines (40 loc) · 960 Bytes
/
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
{
"name": "express-integrator-extension",
"main": "./lib/server",
"version": "0.3.1",
"description": "Express based extension for Integrator.io",
"homepage": "https://integrator.io",
"author": "Celigo Inc. <[email protected]> (http://www.celigo.com)",
"engines": {
"node": ">= 14.18.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/celigo/express-integrator-extension.git"
},
"dependencies": {
"body-parser": "1.20.3",
"express": "4.21.1",
"express-winston": "2.5.1",
"integrator-extension": "0.3.12",
"nanoid": "3.3.4",
"winston": "2.2.0"
},
"devDependencies": {
"mocha": "10.1.0",
"request": "2.88.0",
"should": "8.3.0"
},
"scripts": {
"test": "mocha --require ./test/common.js --reporter spec --recursive --timeout 45000 test"
},
"standard": {
"globals": [
"describe",
"it",
"before",
"after"
]
}
}