-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "@winkgroup/misc",
"version": "2.0.7",
"description": "Utility library used in WiNK for miscellaneous tasks",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"clean": "rm -rf dist/*",
"format": "prettier --write 'src/**/*.ts'",
"prepare": "npm run clean && tsc",
"preversion": "npm run format",
"postversion": "git push && git push --tags && npm publish",
"test": "npx ts-node-dev --respawn src/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WINKgroup/misc-wink.git"
},
"keywords": [],
"author": "winksrl",
"license": "MIT",
"bugs": {
"url": "https://github.com/WINKgroup/misc-wink/issues"
},
"homepage": "https://github.com/WINKgroup/misc-wink#readme",
"devDependencies": {
"@types/node": "^20.11.30",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
}
}