-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 2.92 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 2.92 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": "evaengine",
"version": "1.0.1",
"description": "EvaEngine for Node.js, a micro service development engine",
"license": "MIT",
"type": "module",
"package-lock": false,
"repository": {
"type": "git",
"url": "https://github.com/EvaEngine/EvaEngine.js.git"
},
"scripts": {
"prestart": "node src/index.js",
"prepublish": "npm run test",
"ava": "cross-env LOG_LEVEL=error NODE_ENV=test ava --verbose --serial",
"test": "nyc -a --reporter=lcov --reporter=text --reporter=html npm run ava",
"lint": "eslint src test index.js",
"build": "node --check src/index.js",
"ci:check": "npm run lint && npm run build",
"semantic-release": "semantic-release",
"release": "semantic-release"
},
"engines": {
"node": ">=24.0.0"
},
"keywords": [
"es7",
"es2015",
"engine",
"micro service",
"orm"
],
"main": "src/index.js",
"bin": {
"engine": "./bin/engine"
},
"pre-commit": [
"lint"
],
"author": "AlloVince",
"ava": {
"files": [
"test/**/*.js",
"!test/bootstrap.js",
"!test/_*/**/*.js",
"!test/swagger/_*/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": false,
"tap": false,
"require": [
"./test/bootstrap.js"
]
},
"nyc": {
"require": [],
"include": [
"src/**/*.js"
],
"exclude": [
"src/config/index.js"
]
},
"dependencies": {
"acorn": "^8.18.0",
"app-root-path": "^3.1.0",
"cloud-config-client": "^1.6.2",
"connect-redis": "^10.0.0",
"constitute": "^1.6.2",
"continuation-local-storage": "^3.2.1",
"doctrine": "^3.0.0",
"express": "^5.2.1",
"express-session": "^1.19.0",
"glob": "^13.0.6",
"ioredis": "^5.11.1",
"joi": "^18.2.3",
"js-yaml": "^5.2.2",
"jwt-simple": "^0.5.6",
"later": "^1.2.0",
"lodash": "^4.18.1",
"mkdirp": "^3.0.1",
"moment": "^2.30.1",
"moment-timezone": "^0.6.3",
"morgan": "^1.11.0",
"mysql": "^2.18.1",
"mysql2": "^3.23.2",
"node-mocks-http": "~1.18.1",
"on-headers": "^1.1.0",
"pug": "^3.0.4",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"sequelize": "^6.37.8",
"swagger-ui-dist": "^5.32.11",
"winston": "^3.19.0",
"yargs": "^18.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.5",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^14.0.0",
"ava": "^8.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cross-env": "^10.1.0",
"eslint": "^9.39.5",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.8.0",
"is-type-of": "^2.2.0",
"nock": "^14.0.17",
"nyc": "^18.0.0",
"pre-commit": "^2.0.0",
"semantic-release": "^25.0.8"
}
}