-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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": "@trayio/connector-utils",
"version": "0.4.6",
"description": "Common utility functions used in connectors.",
"main": "lib/index.js",
"scripts": {
"coverage": "npm run test -- --coverage",
"lint": "./node_modules/.bin/eslint . --fix",
"test": "jest tests",
"test:watch": "jest tests --watch --notify",
"update": "npx npm-check-updates -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trayio/falafel-utils.git"
},
"keywords": [
"falafel",
"connectors"
],
"files": [
"index.js",
"/lib"
],
"author": "tray.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/trayio/connector-utils/issues"
},
"homepage": "https://github.com/trayio/connector-utils#readme",
"devDependencies": {
"eslint": "^8.13.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.5.1",
"jest-json-schema": "^6.1.0",
"prettier": "^2.6.2"
},
"dependencies": {
"deepdash": "^5.3.9",
"deepmerge": "^4.2.2",
"lodash": "^4.17.21",
"mustache": "^4.2.0"
}
}