forked from IEEE-VIT/simple-math-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 658 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 658 Bytes
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
{
"name": "simplemath-nodejs",
"version": "1.0.0",
"description": "This is a simple Node.js REST API for beginners to contribute for Hacktoberfest. :)",
"main": "app.js",
"scripts": {
"test": "mocha ./test --recursive --timeout 15000 --no-deprecation",
"start": "node app.js"
},
"keywords": [
"hacktoberfest",
"node.js",
"restapi"
],
"author": "IEEE-VIT-Student-Branch",
"license": "MIT",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1"
},
"devDependencies": {
"assert": "^2.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.2.0",
"should": "^13.2.3"
}
}