Project initialized (but yet empty)

This commit is contained in:
josdejong 2013-02-15 21:35:33 +01:00
parent 5699f6e920
commit f1866cc3bc
4 changed files with 68 additions and 2 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
.idea

View File

@ -1,4 +1,11 @@
math2
Math2
=====
An advanced Javascript math library
Math2 is an advanced Javascript math library.
It is a superset of the standard Math library. Powerful and easy to use.
Math2 supports real and complex values, units, strings, and matrices.
It contains an extensive set of built-in functions,
and comes with a flexible expression parser.
Coming soon...

29
math2.js Normal file
View File

@ -0,0 +1,29 @@
/*!
* math2.js
* An advanced Javascript math library
*
* @license
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*
* Copyright (c) 2013 Jos de Jong
*
* @author Jos de Jong, <wjosdejong@gmail.com>
* @version 0.0.1
* @date 2013-02-15
*/
var math2 = {};
console.log('Sorry, the library is still empty. Coming soon...');
exports = module.exports = math2;

29
package.json Normal file
View File

@ -0,0 +1,29 @@
{
"name": "math2",
"version": "0.0.1",
"description": "An advanced Javascript math library",
"author": "Jos de Jong <wjosdejong@gmail.com>",
"contributors": [
{
"name": "Jos de Jong",
"email": "wjosdejong@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/josdejong/math2.git"
},
"keywords": [
"math",
"mathematics",
"functions",
"parser",
"expression"
],
"dependencies": {},
"devDependencies": {},
"main": "math2.js",
"engines": {
"node": "*"
}
}