-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.49 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": "@cashmoney/number",
"description": "Wrapper around bignumber.js providing string-only representation of arbitrary-precision decimal numbers.",
"version": "2.4.4",
"license": "MIT",
"author": "Matthew Gamble <[email protected]>",
"dependencies": {
"bignumber.js": "^9.0.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/typescript-checker": "^5.6.1",
"alsatian": "^3.2.1",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.6.0",
"tsconfig-paths": "^3.13.0",
"typescript": "^4.6.2"
},
"scripts": {
"build": "tsc --module esnext --noEmitOnError",
"test": "node run-tests.js 'tests/**/*.test.*'",
"test-fast": "CM_TEST_FAST=true node run-tests.js 'tests/**/*.test.*'",
"coverage": "nyc --reporter=lcov --reporter=html yarn run test",
"mutate": "stryker run"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"src/**/*.ts",
"dist/**/*.js",
"dist/**/*.d.ts",
"dist/**/*.js.map",
"tsconfig.json"
],
"sideEffects": false,
"homepage": "https://github.com/cashmoneyjs/number",
"repository": {
"type": "git",
"url": "https://github.com/cashmoneyjs/number.git"
},
"keywords": [
"number",
"bignumber"
],
"packageManager": "[email protected]"
}