-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.68 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.68 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@simplicityjs/framework",
"version": "1.4.0",
"description": "Simplicity Framework",
"main": "src/application/index.js",
"exports": {
".": "./src/application/index.js",
"./env": "./src/env.js",
"./config": "./src/config.js",
"./resource-path": "./src/resource-path.js",
"./storage-path": "./src/storage-path.js",
"./application": "./src/application/index.js",
"./component/*": "./src/component/*.js",
"./component/http": "./src/component/http/index.js",
"./component/middleware/*": "./src/component/middleware/*.js",
"./component/router": "./src/component/router/index.js",
"./component/service-provider": "./src/component/service-provider/index.js",
"./component/view": "./src/component/view/index.js",
"./connections": "./src/connections/index.js",
"./factory/cache": "./src/factory/cache/index.js",
"./factory/database": "./src/factory/database/index.js",
"./factory/log": "./src/factory/log/index.js",
"./lib/*": "./src/lib/*.js"
},
"scripts": {
"test": "cross-env NODE_ENV=test mocha src/test-runner.js",
"test:coverage": "nyc npm test",
"build": "npm install",
"postinstall": "cd src/console && npm install",
"commit": "git-cz",
"lint": "npx eslint src/**/*.js",
"lint:fix": "npm run lint -- --fix",
"changelog:major": "changelog -M",
"changelog:minor": "changelog -m",
"changelog:patch": "changelog -p",
"bump-version": "npm --no-git-tag-version version --",
"version:breaking-change": "npm run changelog:major && npm run bump-version major",
"version:new-feature": "npm run changelog:minor && npm run bump-version minor",
"version:bug-fix": "npm run changelog:patch && npm run bump-version patch",
"release": "node ./scripts/publish.js",
"release:dry-run": "node ./scripts/publish.js --preview"
},
"keywords": [
"API",
"Framework",
"Node",
"REST API",
"Web Service"
],
"repository": {
"type": "git",
"url": "git+https://github.com/simplicity-js/framework.git"
},
"author": "simplymichael <simplymichaelorji@gmail.com> (https://github.com/simplymichael)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplicity-js/framework/issues"
},
"homepage": "https://github.com/simplicity-js/framework#readme",
"dependencies": {
"awilix": "10.0.2",
"chokidar": "3.6.0",
"compression": "1.7.4",
"connect-redis": "7.1.1",
"cookie-parser": "1.4.6",
"cors": "2.8.5",
"csrf-sync": "4.0.3",
"debug": "4.3.5",
"dotenv": "16.4.5",
"express": "4.19.2",
"file-system-cache": "2.4.4",
"http-errors": "2.0.0",
"loadavg-windows": "1.1.1",
"mariadb": "3.3.1",
"mongoose": "8.4.1",
"morgan": "1.10.0",
"mysql2": "3.10.3",
"node-cache": "5.1.2",
"node-laravel-router": "2.0.1",
"object-hash": "3.0.0",
"pg": "8.12.0",
"public-ip": "6.0.2",
"pug": "3.0.3",
"redis": "4.6.14",
"semver": "7.6.3",
"sequelize": "6.37.3",
"serialijse": "0.3.0",
"sqlite3": "5.1.7",
"winston": "3.13.0",
"winston-daily-rotate-file": "5.0.0"
},
"devDependencies": {
"chai": "5.1.1",
"chai-as-promised": "8.0.0",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.4.0",
"generate-changelog": "1.8.0",
"ghooks": "2.0.4",
"mocha": "10.4.0",
"nyc": "15.1.0",
"sinon": "18.0.0",
"supertest": "7.0.0",
"tree-kill": "1.2.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run lint && npm run test:coverage"
}
},
"engines": {
"node": ">=18.18.2",
"npm": ">=9.8.1"
}
}