This repository was archived by the owner on Feb 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.38 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.38 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
{
"name": "zonky-api-handler",
"version": "2.35.46",
"description": "Unofficial handler for Zonky API",
"main": "dist/index.js",
"jsnext:main": "dist/index.esm.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint --ext .ts ./src ./tests",
"lint:export": "npm run lint -- -o ./tests_results/checkstyle/js-checkstyle.xml -f checkstyle",
"tsc": "tsc",
"build": "rollup --config ./rollup.config.js",
"test": "jest",
"test:build": "npm run test -- --config jest.config.build.js",
"test:all": "npm run lint && npm run tsc && npm run test",
"prepublishOnly": "npm run build && npm run tsc && npm run test:build",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fabulator/zonky-api-handler.git"
},
"author": "Michal Ozogán <michal@ozogan.eu>",
"license": "Apache-2.0",
"homepage": "https://github.com/fabulator/zonky-api-handler#readme",
"devDependencies": {
"@socifi/babel-config": "^1.0.0",
"@socifi/commitlint-config": "^1.1.0",
"@socifi/eslint-config": "^2.10.0",
"@socifi/jest-config": "^2.4.1",
"@socifi/rollup-config": "^2.2.2",
"cross-fetch": "^3.0.4",
"semantic-release-config-fabulator": "^2.0.0"
},
"dependencies": {
"@types/luxon": "^1.15.2",
"luxon": "^1.21.1",
"rest-api-handler": "^2.4.1"
}
}