-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
59 lines (59 loc) · 1.62 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
51
52
53
54
55
56
57
58
59
{
"name": "@emartech/escher-request",
"description": "Requests with Escher authentication",
"scripts": {
"test": "mocha --require ts-node/register --extension ts ./src --recursive",
"test:watch": "mocha --require ts-node/register --extension ts ./src --recursive --watch",
"lint": "eslint ./src/**/*.ts",
"build": "rm -rf dist && tsc --project ./tsconfig.json",
"release": "CI=true semantic-release"
},
"publishConfig": {
"access": "public"
},
"main": "dist/request.js",
"repository": {
"type": "git",
"url": "git+https://github.com/emartech/escher-suiteapi-js.git"
},
"keywords": [
"escher"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/emartech/escher-suiteapi-js/issues"
},
"homepage": "https://github.com/emartech/escher-suiteapi-js",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@emartech/json-logger": "7.2.3",
"axios": "1.7.9",
"axios-retry": "3.4.0",
"escher-auth": "3.2.4"
},
"devDependencies": {
"@types/chai": "4.3.11",
"@types/chai-subset": "1.3.5",
"@types/mocha": "10.0.6",
"@types/node": "18.7.23",
"@types/sinon": "10.0.13",
"@types/sinon-chai": "3.2.12",
"@typescript-eslint/parser": "5.40.1",
"chai": "4.3.6",
"chai-subset": "1.6.0",
"eslint": "8.56.0",
"eslint-config-emarsys": "5.1.0",
"eslint-plugin-no-only-tests": "3.1.0",
"eslint-plugin-security": "1.5.0",
"mocha": "10.2.0",
"nock": "13.4.0",
"semantic-release": "19.0.5",
"sinon": "14.0.0",
"sinon-chai": "3.7.0",
"ts-node": "10.9.2",
"typescript": "4.7.4"
}
}