-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.69 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
{
"name": "@agrora/decimal",
"description": "A decimal library for flointing point precision based on PHP's bcmath",
"keywords": [
"decimal",
"float",
"float precision",
"float problems",
"floating point",
"floating point precision",
"floating point problems",
"bigint",
"decimal",
"maths",
"bcmath",
"calculation"
],
"version": "0.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/Agrora/decimal-js",
"license": "MIT",
"readme": "https://github.com/Agrora/decimal-js/blob/master/README.md",
"repository": {
"url": "https://github.com/Agrora/decimal-js",
"type": "git"
},
"author": {
"name": "Torben Köhn",
"email": "t.koehn@outlook.com",
"url": "https://agrora.market"
},
"contributors": [
{
"name": "Robert Hellmann",
"email": "r.hellmann@outlook.com",
"url": "https://agrora.market"
}
],
"bugs": {
"url": "https://github.com/Agrora/decimal-js/issues",
"email": "t.koehn@outlook.com"
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "tslint 'src/**/*.ts'",
"lint:fix": "tslint 'src/**/*.ts' --fix"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/jest-each": "^0.3.4",
"jest": "^24.5.0",
"jest-each": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "3.3.3"
}
}