forked from peterolson/BigInteger.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "big-integer",
"version": "1.6.30",
"author": "Peter Olson <peter.e.c.olson+npm@gmail.com>",
"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": "git@github.com:peterolson/BigInteger.js.git"
},
"keywords": [
"math",
"big",
"bignum",
"bigint",
"biginteger",
"BigInteger",
"integer",
"arbitrary",
"precision",
"arithmetic"
],
"devDependencies": {
"@types/lodash": "^4.14.109",
"@types/node": "^7.0.65",
"coveralls": "^2.11.4",
"jasmine": "2.1.x",
"jasmine-core": "^2.3.4",
"karma": "^0.13.22",
"karma-cli": "^1.0.1",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.4",
"lodash": "^4.17.4",
"typescript": "^2.3.3",
"uglifyjs": "^2.4.10"
},
"license": "Unlicense",
"engines": {
"node": ">=0.6"
},
"typings": "./BigInteger.d.ts"
}