forked from peerigon/sevdesk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.16 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
{
"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": "npm run node -- uvu src test.ts",
"test:ci": "c8 --reporter lcov npm test",
"posttest": "tsc --noEmit",
"prepare": "run-s husky:install build",
"release": "semantic-release",
"husky:install": "husky install",
"node": "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": "^3.0.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@amanda-mitchell/semantic-release-npm-multiple": "^2.14.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^16.4.7",
"@types/node-fetch": "^2.5.12",
"c8": "^7.8.0",
"cross-env": "^7.0.3",
"env-cmd": "^10.1.0",
"env-var": "^7.0.1",
"eslint": "^7.31.0",
"eslint-config-peerigon": "^31.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.1.1",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.4.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"uvu": "^0.5.1"
}
}