-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
57 lines (57 loc) · 1.63 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
52
53
54
55
56
57
{
"name": "double.js",
"version": "1.1.3",
"description": "Emulated float128 or double-double arithmetic. A floating point expansion with 31 accurate decimal digits.",
"main": "dist/double.js",
"module": "dist/double.esm.js",
"scripts": {
"start": "servez -S",
"watch": "onchange 'src/*.ts' -- npm run build",
"build": "npm run build-esm && npm run build-browser && npm run build-wasm",
"build-esm": "esbuild ./src/double.ts --outfile=./dist/double.esm.js",
"build-browser": "esbuild ./src/double.ts --bundle --outfile=./dist/double.js",
"build-wasm": "asc --extension=.as test/bench/bench.as wasm/double.as -b test/bench/bench.wasm -O3",
"test": "node -r esm ./test/test.js",
"ci": "npm run start & sleep 3 && npm run e2e && npm run cov",
"e2e": "node --experimental-modules --no-warnings ./test/e2e.mjs",
"cov": "sed -i 's/.nyc_output\\/js/dist/g' .nyc_output/out.json && nyc report --reporter=lcov"
},
"devDependencies": {
"assemblyscript": "0.19.23",
"esbuild": "^0.14.0",
"esm": "^3.2.25",
"nyc": "^15.1.0",
"onchange": "^7.1.0",
"puppeteer": "14.4.1",
"puppeteer-to-istanbul": "^1.4.0",
"servez": "^1.10.0",
"zora": "^5.0.0"
},
"eslintIgnore": [
"dist",
"test"
],
"babel": {
"presets": [
"@babel/preset-env"
]
},
"keywords": [
"double-double",
"doubledouble",
"float128",
"quadruple",
"qd",
"bigfloat",
"precision",
"arbitrary",
"bits",
"eft"
],
"repository": {
"type": "git",
"url": "git+https://github.com/munrocket/double.js.git"
},
"author": "munrocket",
"license": "MIT"
}