-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·89 lines (89 loc) · 2.63 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
84
85
86
87
88
89
{
"name": "@breautek/storm",
"version": "8.1.4",
"description": "Object-Oriented REST API framework",
"main": "lib/api.js",
"types": "lib/api.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "npm run lint && tsc",
"build:release": "NODE_ENV=production tsc",
"build-lib": "rm -rf ./lib && tsc",
"build-docs": "typedoc --excludePrivate --readme none --out ./docs ./src/api.ts",
"lint": "eslint --ext .ts '?(src|spec)/**/*.ts' --cache",
"lint:fix": "eslint --ext .ts '?(src|spec)/**/*.ts' --fix",
"unit": "jest",
"test": "npm run-script lint && jest",
"coverage": "codecov",
"clean": "rm -r ./lib && rm -r ./docs",
"prepublishOnly": "npm run-script build-lib",
"changelog": "auto-changelog --output CHANGELOG.md -p --release-summary --ignore-commit-pattern chore",
"preversion": "npm test",
"version": "npm run-script build:release && npm run-script build-docs && npm run changelog && git add CHANGELOG.md docs && git commit -m 'chore: changelog'",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/breautek/storm.git"
},
"keywords": [
"web",
"api",
"storm",
"rest",
"object",
"oriented",
"breautek"
],
"engines": {
"node": ">= 20.0.0"
},
"author": "[email protected]",
"license": "Apache-2.0",
"homepage": "https://github.com/breautek/storm.git",
"dependencies": {
"@arashi/token": "1.0.1",
"@breautek/merge-change": "1.0.0",
"@types/body-parser": "1.19.5",
"@types/express": "4.17.21",
"@types/formidable": "3.4.5",
"@types/jsonwebtoken": "9.0.7",
"@types/mysql": "2.15.26",
"@types/node": "22.10.1",
"@types/uuid": "10.0.0",
"ajv": "8.17.1",
"body-parser": "1.20.3",
"commander": "12.1.0",
"express": "4.21.2",
"form-data": "4.0.1",
"formidable": "3.5.2",
"jsonwebtoken": "9.0.2",
"mysql": "2.18.1",
"sql-formatter": "15.4.6",
"tslib": "2.8.1",
"uuid": "11.0.3"
},
"peerDependencies": {
"@arashi/interfaces": "1.x",
"@arashi/logger": "4.x"
},
"devDependencies": {
"@arashi/interfaces": "1.2.1",
"@arashi/logger": "4.0.7",
"@totalpave/eslint-plugin": "6.3.2",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"auto-changelog": "2.5.0",
"eslint": "8.57.1",
"jest": "29.7.0",
"jest-jasmine2": "29.7.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typedoc": "0.27.4",
"typedoc-plugin-markdown": "4.3.2",
"typescript": "5.6.3"
}
}