-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 KB
/
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
39
40
41
42
{
"name": "z-math",
"version": "1.0.0",
"description": "A simple module for operations on arbitrarily large integers, because sometimes 64-bit floats don't quite cut it.",
"main": "main.js",
"dependencies": {
"clone": "^1.0.2"
},
"devDependencies": {
"assert": "^1.3.0",
"babel": "^5.8.23",
"format-error": "^1.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-watch": "^4.3.5",
"mocha": "^2.2.4",
"source-map-support": "^0.3.2"
},
"scripts": {
"test": "mocha --require source-map-support/register",
"jsdoc": "jsdoc src -R README.md -d docs"
},
"repository": {
"type": "git",
"url": "https://github.com/joshuacaron/z-math.git"
},
"bugs": {
"url": "https://github.com/joshuacaron/z-math/issues"
},
"homepage": "https://github.com/joshuacaron/z-math",
"keywords": [
"integers",
"natural",
"numbers",
"math",
"z",
"z-math"
],
"author": "Joshua Caron <joshua@joshuacaron.ca> (https://www.joshuacaron.ca)",
"license": "MIT"
}