-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.24 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.24 KB
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
{
"name": "@standardkit/caas",
"version": "0.0.2",
"description": "StandardKit - Case as a Service - Case Utility",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"version": "auto-changelog -p && git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm test && npm run build",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/standardkit/caas.git"
},
"keywords": [
"standardkit",
"caas",
"case",
"utility"
],
"author": "Coen Mooij",
"license": "Unlicense",
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/standardkit/caas/issues"
},
"homepage": "https://github.com/standardkit/caas#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"auto-changelog": "^2.5.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}