-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "@accentor/api-client-js",
"version": "0.21.0",
"description": "A javascript client for the Accentor API",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "github:accentor/api-client-js",
"scripts": {
"lint": "eslint . --fix",
"build": "node ./build.js",
"test": "nyc ./node_modules/.bin/_mocha"
},
"author": "Team Accentor <team@accentor.tech>",
"contributors": [
"Robbe Van Petegem <robbe@vanpetegem.me>",
"Charlotte Van Petegem <accentor@chvp.be>"
],
"license": "SEE LICENSE IN LICENSE",
"files": [
"dist/**/*"
],
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^22.1.0",
"chai": "^4.3.7",
"esbuild": "^0.24.0",
"eslint": "^9.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"estrella": "^1.4.1",
"fetch-mock": "^12.0.0",
"globals": "^15.0.0",
"mocha": "^10.2.0",
"npm-dts": "^1.3.12",
"nyc": "^17.0.0",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"typescript-eslint": "^8.0.0"
},
"dependencies": {
"fetch-retry": "^6.0.0"
}
}