-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
79 lines (79 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "js-big-decimal",
"version": "2.2.0",
"description": "Work with large numbers on the client side. Round them off to any required precision.",
"main": "dist/node/js-big-decimal.js",
"types": "dist/node/big-decimal.d.ts",
"module": "dist/esm/big-decimal.js",
"exports": {
".": {
"require": "./dist/node/js-big-decimal.js",
"import": "./dist/esm/big-decimal.js",
"types": "./dist/node/big-decimal.d.ts"
}
},
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine --config=spec/jasmine.json --helper=spec/helper/*.js",
"test:watch": "chokidar \"src/**/*.ts\" -c \"npm run travis-test\"",
"coverage": "nyc report --reporter=lcov",
"travis-test": "nyc -x \"**/*.spec.ts\" ts-node node_modules/jasmine/bin/jasmine --config=spec/jasmine.json",
"test-random": "node test/randomtest.js",
"compile": "tsc",
"compile:watch": "chokidar \"src/**/*.ts\" -c \"npm run compile\"",
"dist": "gulp dist",
"dist:watch": "chokidar \"lib/**/*.js\" -c \"npm run dist\"",
"start": "npm-run-all -s --parallel compile:watch test:watch dist:watch",
"toc": "doctoc --title \"## Contents\" ./README.md"
},
"keywords": [
"arithmetic",
"operators",
"precise",
"number",
"decimal",
"big",
"large",
"round",
"add",
"substract",
"multiply",
"divide",
"format"
],
"contributors": [
"Niladri Roy <[email protected]> (https://github.com/royNiladri)",
"Sushanto Halder <[email protected]> (https://github.com/Sushanto)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/royNiladri/js-big-decimal.git"
},
"bugs": {
"url": "https://github.com/royNiladri/js-big-decimal/issues"
},
"homepage": "https://github.com/royNiladri/js-big-decimal#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.18",
"chokidar-cli": "^3.0.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"doctoc": "^2.2.1",
"glob": "^8.0.3",
"gulp": "^4.0.2",
"gulp-run": "^1.7.1",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rollup": "^3.21.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
}
}