-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 993 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "finance.js",
"description": "A financial framework for the manipulation of equities, derivatives securities, foreign exchange currencies, and debt instruments. Built in Node.js, but aims to work on both the browser-side as a standalone library and/or on the server-side on top of Node. Provides core functionality and a very modular plugin architecture such that higher-level programs can easily be written on top of the library as an abstraction layer.",
"version": "0.0.1",
"author": [
"Jeffrey Portman <chromox@gmail.com>",
"Dan Simmons <xiode04@gatech.edu>"
],
"repositories": {
"type": "git",
"url": "git://github.com/ChromoX/finance.js.git"
},
"dependencies": {
"colors": ">=0.0.1",
"uglify-js": ">=0.0.1",
"webworker": ">=0.0.1",
"coffee-script": ">=0.0.1"
},
"engines": { "node": ">= 0.4.9 && <= 0.4.12" },
"directories": { "src": "./src" },
"main": { "finance.js": "./finance.js" },
"bin": { "finance.js": "./finance.js" }
}