-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@elbstack/lexoffice-client-js",
"version": "1.0.1",
"description": "An universal client for the Lexoffice API written in Typescript",
"main": "dist/index.js",
"module": "dist/index.m.js",
"umd:main": "dist/index.umd.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"scripts": {
"build": "rm -rf dist && microbundle",
"dev": "microbundle watch",
"release": "npm run build && np",
"lint": "eslint 'src/**/*.ts' --fix",
"test": "echo \"No test specified\"",
"start:example": "ts-node example/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elbstack/lexoffice-client-js.git"
},
"keywords": [
"lexoffice",
"api",
"client",
"javascript",
"typescript",
"node",
"browser"
],
"files": [
"dist",
"src"
],
"author": "elbstack <hello@elbstack.com>",
"contributors": [
"Annaelle Rössert <annaelle@elbstack.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/elbstack/lexoffice-client-js/issues"
},
"homepage": "https://github.com/elbstack/lexoffice-client-js#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"local-package-publisher": "^1.0.4",
"microbundle": "^0.13.1",
"nock": "^13.0.7",
"np": "^7.5.0",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"axios": "^0.21.1",
"form-data": "^4.0.0",
"ts-results": "^3.1.1",
"tslib": "^2.2.0",
"uri-tag": "^1.3.0",
"utility-types": "^3.10.0"
}
}