-
Notifications
You must be signed in to change notification settings - Fork 187
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "big-integer",
"version": "1.6.52",
"author": "Peter Olson <[email protected]>",
"description": "An arbitrary length integer library for Javascript",
"contributors": [],
"bin": {},
"scripts": {
"test": "tsc && karma start my.conf.js && node spec/tsDefinitions.js",
"minify": "uglifyjs BigInteger.js -o BigInteger.min.js"
},
"main": "./BigInteger",
"repository": {
"type": "git",
"url": "github:peterolson/BigInteger.js"
},
"keywords": [
"math",
"big",
"bignum",
"bigint",
"biginteger",
"integer",
"arbitrary",
"precision",
"arithmetic"
],
"devDependencies": {
"@types/lodash": "^4.14.175",
"@types/node": "^7.10.2",
"coveralls": "^3.0.6",
"jasmine": "3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^6.3.4",
"karma-cli": "^2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"lodash": "^4.17.21",
"typescript": "^5.3.2",
"uglify-js": "^3.17.4"
},
"license": "Unlicense",
"engines": {
"node": ">=0.6"
},
"typings": "./BigInteger.d.ts"
}