-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.18 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
{
"name": "@winkgroup/network",
"version": "3.0.9",
"description": "Helper class to manage network state",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"format": "prettier --write 'src/**/*.ts'",
"prepare": "npm run build",
"postversion": "git push && git push --tags && npm publish",
"testWebservice": "ts-node-dev src/testWebservice.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WINKgroup/network.git"
},
"keywords": [
"network"
],
"author": "winksrl",
"license": "MIT",
"bugs": {
"url": "https://github.com/WINKgroup/network/issues"
},
"homepage": "https://github.com/WINKgroup/network#readme",
"dependencies": {
"@winkgroup/console-log": "^3.0.3",
"@winkgroup/cron": "^2.2.1",
"axios": "^1.7.3",
"@types/express-serve-static-core": "^4.19.5",
"express": "^4.19.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.7",
"@types/node": "^22.1.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4"
}
}