forked from rawify/Polynomial.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.03 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.03 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
44
{
"name": "polynomial",
"title": "polynomial.js",
"version": "1.4.5",
"homepage": "https://github.com/infusion/Polynomial.js",
"bugs": "https://github.com/infusion/Polynomial.js/issues",
"description": "A polynomial library",
"keywords": [
"math",
"poly",
"polynomial",
"number",
"complex",
"rational",
"parser"
],
"author": "Robert Eisele <robert@xarg.org> (http://www.xarg.org/)",
"main": "polynomial",
"private": false,
"readmeFilename": "README.md",
"directories": {
"example": "examples"
},
"license": "MIT OR GPL-2.0",
"repository": {
"type": "git",
"url": "git://github.com/infusion/Polynomial.js.git"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "mocha tests/*.js"
},
"devDependencies": {
"mocha": "*"
},
"dependencies": {
"fraction.js": "*",
"complex.js": "*",
"quaternion": "*",
"big-integer": "*"
}
}