-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.61 KB
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
51
52
{
"name": "podio-component",
"description": "Podio API integration component for the integration platform",
"homepage": "https://elastic.io",
"scripts": {
"audit": "better-npm-audit audit --level high --production",
"lint": "eslint --ext .ts --quiet --fix",
"pretest": "eslint --ext .ts --quiet --fix && find src spec -name \\\"*.js\\\" -type f -delete && rm -f verifyCredentials.js",
"test": "mocha --require ts-node/register \"spec/**/*test.ts\"",
"dev:test": "find src spec -name \\\"*.js\\\" -type f -delete && rm -f verifyCredentials.js && tsc && npm run test",
"posttest": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elasticio/podio-component.git"
},
"keywords": [
"podio",
"elastic.io",
"api",
"ipaas"
],
"author": "elastic.io GmbH",
"bugs": {
"url": "https://github.com/elasticio/podio-component/issues"
},
"dependencies": {
"@elastic.io/component-commons-library": "^3.2.1",
"axios": "^1.9.0",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.7.5"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"@types/mocha": "10.0.6",
"@types/node": "20.11.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.0.0",
"better-npm-audit": "3.7.3",
"chai": "4.3.8",
"chai-as-promised": "7.1.1",
"dotenv": "16.4.5",
"eslint": "8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"mocha": "10.4.0",
"nyc": "15.1.0",
"sinon": "18.0.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
}
}