-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.21 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
48
49
50
{
"name": "@oih/contacts-adapter-template",
"version": "1.0.0",
"description": "OIH adapter template",
"homepage": "https://www.openintegrationhub.org/",
"author": {
"name": "Wice GmbH",
"url": "https://www.wice.de"
},
"files": [
"lib"
],
"keywords": [
"template",
"example",
"adapter",
"oih"
],
"scripts": {
"start": "node ./node_modules/@openintegrationhub/ferryman/runGlobal.js",
"pretest": "eslint lib test --ext .js --ext .json --fix",
"test": "NODE_ENV=test mocha test/* --timeout 10000",
"test-watch": "nodemon --exec \"npm test \""
},
"engines": {
"node": "8.16.2",
"npm": ">=5.4"
},
"dependencies": {
"dotenv": "^8.2.0",
"@openintegrationhub/ferryman": "^1.1.5",
"request": "2.88.0",
"request-promise": "4.1.1"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.2.1",
"eslint-plugin-mocha": "^5.2.0",
"mocha": "^8.1.1",
"nock": "^9.6.1"
},
"repository": {
"type": "git",
"url": "[email protected]:openintegrationhub/contacts-adapter-template.git"
},
"license": "Apache 2.0"
}