-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
58 lines (58 loc) · 1.24 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
{
"name": "calmapi",
"version": "0.2.4",
"description": "Production ready REST API framework using NodeJS & MongoDB With CLI",
"main": "index.js",
"scripts": {
"test": "mocha tests",
"lint": "./node_modules/.bin/eslint .",
"start": "node index.js",
"dev": "node resource/project/index.js"
},
"repository": {
"type": "git",
"url": "[email protected]:sunilksamanta/calmapi.git"
},
"keywords": [
"calmapi",
"restapi",
"nodejs",
"mongodb",
"mongoose",
"boilerplate",
"starter",
"restapi",
"rest"
],
"author": "Sunil Kumar Samanta",
"license": "MIT",
"bugs": {
"url": "https://github.com/sunilksamanta/calmapi/issues"
},
"homepage": "https://calmapi.dev",
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.23.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^6.0.0",
"mocha": "^10.1.0"
},
"dependencies": {
"axios": "^0.21.1",
"case": "^1.6.3",
"chalk": "^4.1.1",
"change-case": "^4.1.2",
"inquirer": "^8.0.0",
"ora": "^5.4.0",
"pluralize": "^8.0.0"
},
"bin": {
"calmapi": "./index.js"
},
"engines": {
"node": ">=12.0.0"
},
"engineStrict": true
}