-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 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
{
"name": "bigbit",
"version": "1.3.2",
"description": "Implementation of BigBit standard for numeric data type and character encoding",
"main": "index.js",
"scripts": {
"test": "jasmine tests/*test.js",
"coverage": "nyc jasmine tests/*test.js; nyc report --reporter=lcov",
"bundle": "browserify index.js -s bigbit > dist/bigbit.js;",
"webbundle": "webpack"
},
"keywords": [
"bigbig",
"bytebit",
"head byte",
"extended head byte",
"linked bytes",
"big number",
"big",
"binary32",
"binary64",
"utf",
"float",
"double",
"character encoding",
"ieee754"
],
"author": "Amit Gupta (http://amitkumargupta.work)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bigbit/bigbitjs"
},
"devDependencies": {
"@babel/core": "~7.0.0-rc.2",
"@babel/plugin-transform-runtime": "~7.0.0-rc.2",
"@babel/preset-env": "~7.0.0-rc.2",
"@babel/register": "~7.0.0-rc.2",
"babel-loader": "~8.0.0-beta.6",
"big.js": "^5.1.2",
"browserify": "^16.2.3",
"ieee754": "^1.1.12",
"jasmine": "^3.2.0",
"nyc": "^13.3.0",
"webpack": "~4.17.0",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"bignumber.js": "^7.2.1"
}
}