-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.14 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
{
"name": "tripletexjs",
"version": "3.18.0",
"description": "Typescript-wrapper for Tripletex 2.0 API",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --setupFiles dotenv/config --coverage src/**/*"
},
"keywords": [
"tripletex",
"accounting",
"invoice",
"rest-api"
],
"repository": "github:bjerkio/tripletexjs",
"license": "Apache-2.0",
"author": "Simen A. W. Olsen <[email protected]> (https://bjerk.io)",
"prettier": "@simenandre/prettier",
"devDependencies": {
"@bjerk/eslint-config": "^5.0.0",
"@tsconfig/node16": "^1.0.3",
"@types/jest": "^28.1.2",
"@types/omit-empty": "^1.0.1",
"jest": "^28.1.1",
"nock": "^13.2.7",
"ts-jest": "^28.0.5",
"typescript": "^5.0.0",
"@simenandre/prettier": "5.0.0"
},
"dependencies": {
"date-fns": "^2.28.0",
"dotenv": "^16.0.1",
"invariant": "^2.2.4",
"node-fetch": "^3.2.6",
"omit-empty": "^1.0.0",
"runtypes": "^6.5.1",
"ts-invariant": "^0.10.3",
"typical-fetch": "^1.5.0"
},
"engines": {
"node": ">=16"
}
}