forked from rawify/Fraction.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "fraction.js",
"title": "fraction.js",
"version": "4.0.3",
"homepage": "http://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 <[email protected]> (http://www.xarg.org/)",
"main": "fraction",
"private": false,
"readmeFilename": "README.md",
"directories": {
"example": "examples"
},
"license": "MIT OR GPL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/infusion/Fraction.js.git"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha tests/*.js"
},
"devDependencies": {
"mocha": "*"
}
}