-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 766 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 766 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
29
{
"name": "data-normalization",
"version": "1.0.0",
"description": "A cloud function that allows you to normalize a given dataset by scaling the values to a specific range.",
"main": "index.js",
"scripts": {
"start": "node api/index.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dukeofhazardz/data-normalization.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/dukeofhazardz/data-normalization/issues"
},
"homepage": "https://github.com/dukeofhazardz/data-normalization#readme",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2",
"mathjs": "^13.0.3"
},
"devDependencies": {
"jest": "^29.7.0"
}
}