-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 937 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
26
27
28
29
30
31
32
33
34
35
{
"name": "bigfloat",
"version": "0.1.1",
"description": "Fast arbitrary precision math library for computational geometry.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/index.js",
"typings": "dist/esm/index.d.ts",
"scripts": {
"tsc": "tsc",
"rollup": "rollup",
"prepublish": "(checkver ge 5.0.0 && tsc -m es6 --outdir dist/esm -p src && rollup -c) || tsc -p src",
"test": "tsc -p test && node test/test.js"
},
"author": "Juha Järvi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/charto/bigfloat.git"
},
"bugs": {
"url": "https://github.com/charto/bigfloat/issues"
},
"homepage": "https://github.com/charto/bigfloat#readme",
"keywords": [
"bignum",
"gmp"
],
"devDependencies": {
"@types/node": "^10.12.9",
"autoroll": "^0.1.0",
"rollup": "^0.67.3",
"typescript": "^3.1.6"
}
}