version bump 1.1.0: pin dependencies
This commit is contained in:
parent
395ea31e95
commit
4cb7279d62
13
frac.md
13
frac.md
@ -243,16 +243,16 @@ xltestfiles.forEach(function(x) {
|
||||
```json>package.json
|
||||
{
|
||||
"name": "frac",
|
||||
"version": "1.0.5",
|
||||
"version": "1.1.0",
|
||||
"author": "SheetJS",
|
||||
"description": "Rational approximation with bounded denominator",
|
||||
"keywords": [ "math", "fraction", "rational", "approximation" ],
|
||||
"main": "frac.js",
|
||||
"dependencies": {
|
||||
"voc":""
|
||||
"voc":"~1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha":""
|
||||
"mocha":"~2.5.3"
|
||||
},
|
||||
"repository": { "type":"git", "url":"git://github.com/SheetJS/frac.git" },
|
||||
"scripts": {
|
||||
@ -263,6 +263,7 @@ xltestfiles.forEach(function(x) {
|
||||
"pattern": "frac.js"
|
||||
}
|
||||
},
|
||||
"homepage": "http://oss.sheetjs.com/frac",
|
||||
"bugs": { "url": "https://github.com/SheetJS/frac/issues" },
|
||||
"license": "Apache-2.0",
|
||||
"engines": { "node": ">=0.8" }
|
||||
@ -273,7 +274,11 @@ And to make sure that test files are not included in npm:
|
||||
|
||||
```>.npmignore
|
||||
test_files/*.tsv
|
||||
ctest/
|
||||
test.js
|
||||
Makefile
|
||||
.gitignore
|
||||
.npmignore
|
||||
node_modules/
|
||||
coverage.html
|
||||
.travis.yml
|
||||
@ -287,6 +292,8 @@ build/
|
||||
MANIFEST
|
||||
*.gz
|
||||
*.tgz
|
||||
*.py
|
||||
*.html
|
||||
```
|
||||
|
||||
Don't include the node modules in git:
|
||||
|
16
index.html
16
index.html
@ -16,14 +16,14 @@ a { text-decoration: none }
|
||||
<a href="https://github.com/SheetJS/frac">Source Code Repo</a>
|
||||
<a href="https://github.com/SheetJS/frac/issues">Issues? Something look weird? Click here and report an issue</a>
|
||||
</pre>
|
||||
<table>
|
||||
<tr><td><b>Number:</b></td><td><input type="text" id="val" value="1.3"></td></tr>
|
||||
<tr><td><b>Denominator Digits:</b></td><td><input type="text" id="fmt" value="1"></td></tr>
|
||||
<tr><td><b>Use Mixed Fraction:</b></td><td><input type="checkbox" id="mix" name="mixd" checked></td></tr>
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
<tr><td><b>Mediant Fraction:</b></td><td><pre id="frm"></pre></td></tr>
|
||||
<tr><td><b>Aberth Fraction:</b></td><td><pre id="fra"></pre></td></tr>
|
||||
</table>
|
||||
<table>
|
||||
<tr><td><b>Number:</b></td><td><input type="text" id="val" value="1.3"></td></tr>
|
||||
<tr><td><b>Denominator Digits:</b></td><td><input type="text" id="fmt" value="1"></td></tr>
|
||||
<tr><td><b>Use Mixed Fraction:</b></td><td><input type="checkbox" id="mix" name="mixd" checked></td></tr>
|
||||
<tr><td colspan="2"> </td></tr>
|
||||
<tr><td><b>Mediant Fraction:</b></td><td><pre id="frm"></pre></td></tr>
|
||||
<tr><td><b>Aberth Fraction:</b></td><td><pre id="fra"></pre></td></tr>
|
||||
</table>
|
||||
<script src="frac.js"></script>
|
||||
<script>
|
||||
/*jshint browser:true */
|
||||
|
@ -1,15 +1,15 @@
|
||||
{
|
||||
"name": "frac",
|
||||
"version": "1.0.6",
|
||||
"version": "1.1.0",
|
||||
"author": "SheetJS",
|
||||
"description": "Rational approximation with bounded denominator",
|
||||
"keywords": [ "math", "fraction", "rational", "approximation" ],
|
||||
"main": "frac.js",
|
||||
"dependencies": {
|
||||
"voc":""
|
||||
"voc":"~1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha":""
|
||||
"mocha":"~2.5.3"
|
||||
},
|
||||
"repository": { "type":"git", "url":"git://github.com/SheetJS/frac.git" },
|
||||
"scripts": {
|
||||
@ -20,7 +20,7 @@
|
||||
"pattern": "frac.js"
|
||||
}
|
||||
},
|
||||
"homepage": "http://oss.sheetjs.com/frac",
|
||||
"homepage": "http://oss.sheetjs.com/frac",
|
||||
"bugs": { "url": "https://github.com/SheetJS/frac/issues" },
|
||||
"license": "Apache-2.0",
|
||||
"engines": { "node": ">=0.8" }
|
||||
|
Loading…
Reference in New Issue
Block a user