forked from numbers/numbers.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 797 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 797 Bytes
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
{
"author": "Steve Kaliski <[email protected]> (https://github.com/sjkaliski)",
"name": "numbers",
"description": "Advanced Mathematics Library for JavaScript",
"version": "0.0.1",
"homepage": "https://github.com/sjkaliski/numbers.js",
"repository": {
"type": "git",
"url": "git://github.com/sjkaliski/numbers.js"
},
"contributors": [
"David Byrd (https://github.com/davidbyrd11)",
"Ethan Resnick (https://github.comc/ethanresnick)"
],
"engines": {
"node": ">= v0.6.0"
},
"main": "index",
"keywords": [
"math",
"mathematics",
"numbers",
"statistics"
],
"devDependencies": {
"mocha": "~1.5.0",
"browserify": "~1.16.6",
"uglify-js": "~2.2.2"
},
"scripts": {
"test": "make test",
"build": "make build"
}
}