-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
86 lines (86 loc) · 2.39 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
86
{
"name": "@peerigon/sevdesk",
"version": "0.0.0-semantically-released",
"description": "💵 Unofficial JavaScript SDK for sevdesk.com",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"test": "run-p test:suite test:lint test:types",
"test:ci": "run-p test:suite:ci test:lint test:types",
"test:suite": "npm run env -- uvu src '.*.test.ts'",
"test:suite:ci": "npm run env -- c8 --reporter lcov uvu src '.*.test.ts'",
"test:lint": "eslint --max-warnings 0 --cache --ext js,jsx,cjs,mjs,ts,tsx .",
"test:types": "tsc --noEmit",
"prepare": "run-s husky:install build",
"release": "semantic-release",
"husky:install": "husky install",
"env": "env-cmd cross-env NODE_OPTIONS='--no-warnings --loader ts-node/esm/transpile-only'"
},
"main": "./dist/node.js",
"browser": "./dist/main.js",
"exports": {
"node": "./dist/node.js",
"default": "./dist/main.js"
},
"files": [
"dist"
],
"sideEffects": false,
"lint-staged": {
"*.{ts,tsx,js,cjs,mjs,jsx}": [
"eslint --cache --fix",
"prettier --write"
],
".github/workflows/*.{yml,yaml}": [
"pin-github-action --allow-empty",
"prettier --write"
],
"*.{json,css,md,yml,yaml}": "prettier --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peerigon/sevdesk.git"
},
"keywords": [
"sevdesk",
"api",
"client",
"sdk"
],
"author": "Peerigon GmbH",
"license": "MIT",
"bugs": {
"url": "https://github.com/peerigon/sevdesk/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/peerigon/sevdesk#readme",
"dependencies": {
"form-data": "^4.0.0",
"node-fetch": "^3.2.10"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^3.5.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.7.14",
"@types/node-fetch": "^2.6.2",
"c8": "^7.12.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"env-var": "^7.2.0",
"eslint": "^8.23.0",
"eslint-config-peerigon": "^33.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.6.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.2",
"uvu": "^0.5.6"
}
}