-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
25 lines (25 loc) · 949 Bytes
/
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
{
"name": "arch2_binary_32_converter",
"version": "1.0.0",
"description": "## IEEE-754 Binary-32 floating-point converter (including all special cases) 1. Input: binary mantissa and base-2 (i.e., 101.01x25), decimal mantissa and base-10 (i.e., 15.75x105) and NaN 2. Output: (1) binary output with space between sections (2) it’s hexadecimal equivalent (3) with an option to output in a text file",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RJ0514/ARCH2_Binary_32_Converter.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/RJ0514/ARCH2_Binary_32_Converter/issues"
},
"homepage": "https://github.com/RJ0514/ARCH2_Binary_32_Converter#readme",
"dependencies": {
"express": "^4.18.2",
"node": "^19.8.1",
"nodemon": "^2.0.22",
"require.js": "^1.0.0"
}
}