package.json
1.04 KB
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
{
"name": "fraction.js",
"title": "fraction.js",
"version": "4.2.0",
"homepage": "https://www.xarg.org/2014/03/rational-numbers-in-javascript/",
"bugs": "https://github.com/infusion/Fraction.js/issues",
"description": "A rational number library",
"keywords": [
"math",
"fraction",
"rational",
"rationals",
"number",
"parser",
"rational numbers"
],
"author": "Robert Eisele <robert@xarg.org> (http://www.xarg.org/)",
"main": "fraction",
"types": "./fraction.d.ts",
"private": false,
"readmeFilename": "README.md",
"directories": {
"example": "examples"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/infusion/Fraction.js.git"
},
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/infusion"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha tests/*.js"
},
"devDependencies": {
"mocha": "*"
}
}