-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.36 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "openwilma.js",
"version": "2.0.0-alpha.9",
"description": "OpenSource JavaScript client library for Wilma by Visma",
"author": "Esinko <[email protected]> (https://github.com/Esinko)",
"contributors": [
"Antti <[email protected]>"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"browser": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"scripts": {
"lint": "eslint src rollup.config.ts --ext ts --fix",
"format": "prettier --write rollup.config.ts .github/workflows src/**/*.ts",
"build": "rollup -c rollup.config.ts",
"update": "yarn upgrade-interactive",
"postinstall": "husky install",
"prepack": "yarn build && pinst --disable",
"postpack": "pinst --enable",
"docs": "typedoc"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@sapphire/eslint-config": "^4.3.8",
"@sapphire/ts-config": "^3.3.4",
"@types/node": "^18.7.18",
"@types/prettier": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"eslint": "^8.23.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.79.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-typescript2": "^0.34.0",
"rollup-plugin-version-injector": "^1.3.3",
"typedoc": "^0.23.15",
"typescript": "^4.8.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OpenWilma/openwilma.js.git"
},
"files": [
"dist",
"!dist/*.tsbuildinfo"
],
"engines": {
"node": ">=16",
"npm": ">=6"
},
"keywords": [
"wilma"
],
"bugs": {
"url": "https://github.com/OpenWilma/openwilma.js/issues"
},
"homepage": "https://github.com/OpenWilma/openwilma.js#readme",
"publishConfig": {
"access": "public"
},
"lint-staged": {
"*.ts": "eslint --fix --ext ts"
},
"packageManager": "[email protected]"
}