-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "kuksa-event-api-client",
"version": "5.0.1",
"description": "Client for the kuksa api for event information.",
"main": "dist/lib.js",
"typings": "dist/lib.d.ts",
"scripts": {
"build": "tsc && cp src/importNodeFetch.js dist/",
"clean": "rm -rf dist kuksa-event-api-client.tar.gz",
"preversion": "[[ $(git branch | grep '*' | cut -c 3-) = master ]] && rm -rf release kuksa-event-api-client.tar.gz",
"version": "npm run build && mkdir release && cp -r dist package.json README.md release/ && tar -cf kuksa-event-api-client.tar.gz release/",
"postversion": "rm -rf release && git push && git push --tags",
"prepare": "git config core.hooksPath .githooks",
"prettier-write": "prettier --write '**/*.{js,jsx,mjs,ts,tsx,json,md,css,yml,yaml,less,scss}'"
},
"dependencies": {
"node-fetch": "^3.0.0",
"proxy-agent": "^5.0.0",
"runtypes": "^6.4.1"
},
"devDependencies": {
"@types/node": "^16.9.2",
"@types/node-fetch": "^3.0.3",
"lint-staged": "^11.1.2",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:partio-scout/kuksa-event-api-client.git"
},
"private": true,
"licence": "UNLICENCED"
}