-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.58 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
{
"name": "@simplicityjs/simplicity",
"version": "1.0.1",
"description": "The Simplest MVC Framework for Node.js",
"scripts": {
"test": "cross-env NODE_ENV=test LOG_TO_CONSOLE=false mocha tests/\"{,/**/}*.spec.js\"",
"test:coverage": "nyc npm test",
"build": "npm install",
"commit": "git-cz",
"lint": "npx eslint",
"lint:fix": "npm run lint -- --fix",
"dev": "cross-env NODE_ENV=development node bob start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simplicity-js/simplicity.git"
},
"keywords": [
"simplicity",
"expressjs",
"web-framework",
"framework",
"mvc",
"node.js"
],
"author": "simplymichael <simplymichaelorji@gmail.com> (https://github.com/simplymichael)",
"license": "MIT",
"bugs": {
"url": "https://github.com/simplicity-js/simplicity/issues"
},
"homepage": "https://github.com/simplicity-js/simplicity#readme",
"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"
},
"dependencies": {
"@simplicityjs/framework": "1.2.1",
"app-module-path": "2.2.0",
"mongoose": "8.5.2",
"node-cache": "5.1.2",
"sequelize": "6.37.3"
},
"devDependencies": {
"chai": "5.1.1",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "9.7.0",
"ghooks": "2.0.4",
"mocha": "10.6.0",
"nyc": "17.0.0",
"supertest": "7.0.0"
}
}