lib-r-math.js
Advanced tools
Comparing version 1.0.88 to 1.0.89
@@ -0,1 +1,6 @@ | ||
## version "1.0.89" | ||
## fixed | ||
## PR (Jacob Bogers <jkfbogers@gmail.com>) | ||
- fix emitting the ts decleration files | ||
## version "1.0.88" | ||
@@ -2,0 +7,0 @@ ### fixed |
@@ -15,3 +15,3 @@ export declare function isOdd(n: number): boolean; | ||
export declare const each: (xx: {}) => (fn: (x: any, idx?: string | number | undefined) => any) => any; | ||
export declare function numberPrecision(prec?: number): (x: number | number[], ...rest: any[]) => number | number[]; | ||
export declare function numberPrecision(prec?: number): (x: import("src/lib/types").numVector, ...rest: any[]) => import("src/lib/types").numVector; | ||
export declare function any<T>(x: T[]): (fn: any) => boolean; | ||
@@ -18,0 +18,0 @@ export declare function sum(x: any[]): number; |
166
package.json
{ | ||
"author": "Jacob K.F. Bogers", | ||
"contributors":[{ | ||
"name":"Richard D. Morey", | ||
"email": "richarddmorey@gmail.com" | ||
}], | ||
"browser": "./dist/lib/libR.min.js", | ||
"bugs": { | ||
"url": "https://github.com/R-js/libRmath.js/issues" | ||
}, | ||
"dependencies": { | ||
"debug": "^3.1.0" | ||
}, | ||
"name": "lib-r-math.js", | ||
"version": "1.0.89", | ||
"description": "Javascript Pure Implementation of Statistical R \"core\" numerical libRmath.so", | ||
"devDependencies": { | ||
"@types/chai": "^3.5.2", | ||
"@types/clone": "^0.1.30", | ||
"@types/debug": "0.0.30", | ||
"@types/lodash.clonedeep": "^4.5.3", | ||
"@types/lodash.includes": "^4.3.3", | ||
"@types/lodash.xor": "^4.5.3", | ||
"@types/mocha": "^2.2.48", | ||
"@types/node": "^6.0.109", | ||
"ajv": "^6.5.0", | ||
"awesome-typescript-loader": "^3.4.1", | ||
"babel-core": "^6.26.3", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"babel-register": "^6.26.0", | ||
"chai": "^3.5.0", | ||
"clean-webpack-plugin": "^0.1.18", | ||
"codecov": "^2.3.1", | ||
"cross-env": "^5.1.5", | ||
"github-markdown-css": "^2.10.0", | ||
"istanbul": "^0.4.5", | ||
"lodash.clonedeep": "^4.5.0", | ||
"lodash.defaults": "^4.2.0", | ||
"lodash.defaultsdeep": "^4.6.0", | ||
"lodash.includes": "^4.3.0", | ||
"lodash.merge": "^4.6.1", | ||
"lodash.xor": "^4.5.0", | ||
"markdown-it": "^8.4.0", | ||
"markdown-it-katex": "^2.0.3", | ||
"mocha": "^4.1.0", | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"nyc": "^11.7.3", | ||
"opn": "^5.3.0", | ||
"opn-cli": "^3.1.0", | ||
"schema-utils": "^0.4.5", | ||
"shx": "^0.2.2", | ||
"source-map-support": "^0.5.5", | ||
"ts-node": "^4.1.0", | ||
"tslint": "^5.10.0", | ||
"tslint-loader": "^3.5.3", | ||
"typescript": "^2.8.3", | ||
"uglifyjs-webpack-plugin": "^1.2.5", | ||
"webpack": "^2.7.0", | ||
"webpack-node-externals": "^1.7.2" | ||
}, | ||
"homepage": "https://github.com/jacobbogers/libRmath.js#readme", | ||
"keywords": [ | ||
@@ -106,7 +50,6 @@ "statistics", | ||
], | ||
"license": "GPL-3.0", | ||
"main": "dist/lib/libR.js", | ||
"module:disabled": "", | ||
"module:doc": "https://github.com/dherman/defense-of-dot-js/blob/master/proposal.md", | ||
"name": "lib-r-math.js", | ||
"homepage": "https://github.com/jacobbogers/libRmath.js#readme", | ||
"bugs": { | ||
"url": "https://github.com/R-js/libRmath.js/issues" | ||
}, | ||
"repository": { | ||
@@ -116,6 +59,19 @@ "type": "git", | ||
}, | ||
"license": "GPL-3.0", | ||
"author": "Jacob K.F. Bogers", | ||
"contributors": [ | ||
{ | ||
"name": "Richard D. Morey", | ||
"email": "richarddmorey@gmail.com" | ||
} | ||
], | ||
"main": "dist/lib/libR.js", | ||
"browser": "./dist/lib/libR.min.js", | ||
"types": "dist/src/lib/index.d.ts", | ||
"scripts": { | ||
"build": "webpack --progress --color --display-error-details --config config/webpack/config", | ||
"build:prod": "webpack --progress --color --display-error-details --config config/webpack/config --env=prod", | ||
"preinstall": "echo install", | ||
"install": "echo install", | ||
"postinstall": "echo postinstall", | ||
"lint": "tslint -c tslint.json -p .", | ||
@@ -125,35 +81,81 @@ "lint:fix": "npm run lint -- --fix", | ||
"post-test": "echo posttest", | ||
"postinstall": "echo postinstall", | ||
"prerestart": "echo prerestart", | ||
"restart": "echo restart", | ||
"postrestart": "echo postrestart", | ||
"preshrinkwrap": "echo preshrinkwrap", | ||
"shrinkwrap": "echo shrinkwrap", | ||
"postshrinkwrap": "echo postshrinkwrap", | ||
"prestart": "echo prestart", | ||
"start": "echo start", | ||
"poststart": "echo poststart", | ||
"prestop": "echo prestop", | ||
"stop": "echo stop", | ||
"poststop": "echo poststop", | ||
"preuninstall": "echo preuninstall", | ||
"uninstall": "echo uninstall", | ||
"postuninstall": "echo postuninstall", | ||
"preversion": "echo preversion", | ||
"version": "echo version", | ||
"postversion": "echo postversion", | ||
"pre-test": "echo prestest", | ||
"preinstall": "echo install", | ||
"prepare": "echo 'prepare'", | ||
"prepublish": "echo 'prepublish'", | ||
"publish": "echo publish", | ||
"prepublishOnly": "echo prepublishOnly", | ||
"prerestart": "echo prerestart", | ||
"preshrinkwrap": "echo preshrinkwrap", | ||
"prestart": "echo prestart", | ||
"prestop": "echo prestop", | ||
"codecov": "codecov", | ||
"preuninstall": "echo preuninstall", | ||
"preversion": "echo preversion", | ||
"publish": "echo publish", | ||
"report": "opn coverage/lcov-report/index.html", | ||
"restart": "echo restart", | ||
"shrinkwrap": "echo shrinkwrap", | ||
"start": "echo start", | ||
"stop": "echo stop", | ||
"test": "cross-env-shell NODE_ENV=test TS_NODE_DISABLE_WARNINGS=true nyc mocha", | ||
"uninstall": "echo uninstall", | ||
"version": "echo version", | ||
"version:tsc":"tsc --version", | ||
"version:tslint":"tslint --version" | ||
"version:tsc": "tsc --version", | ||
"version:tslint": "tslint --version" | ||
}, | ||
"types": "dist/src/lib/index.d.ts", | ||
"version": "1.0.88" | ||
"dependencies": { | ||
"debug": "^3.1.0" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^3.5.2", | ||
"@types/clone": "^0.1.30", | ||
"@types/debug": "0.0.30", | ||
"@types/lodash.clonedeep": "^4.5.3", | ||
"@types/lodash.includes": "^4.3.3", | ||
"@types/lodash.xor": "^4.5.3", | ||
"@types/mocha": "^2.2.48", | ||
"@types/node": "^6.0.109", | ||
"ajv": "^6.5.0", | ||
"awesome-typescript-loader": "^3.4.1", | ||
"babel-core": "^6.26.3", | ||
"babel-preset-env": "^1.7.0", | ||
"babel-preset-stage-0": "^6.24.1", | ||
"babel-register": "^6.26.0", | ||
"chai": "^3.5.0", | ||
"clean-webpack-plugin": "^0.1.18", | ||
"codecov": "^2.3.1", | ||
"cross-env": "^5.1.5", | ||
"github-markdown-css": "^2.10.0", | ||
"istanbul": "^0.4.5", | ||
"lodash.clonedeep": "^4.5.0", | ||
"lodash.defaults": "^4.2.0", | ||
"lodash.defaultsdeep": "^4.6.0", | ||
"lodash.includes": "^4.3.0", | ||
"lodash.merge": "^4.6.1", | ||
"lodash.xor": "^4.5.0", | ||
"markdown-it": "^8.4.0", | ||
"markdown-it-katex": "^2.0.3", | ||
"mocha": "^4.1.0", | ||
"mocha-lcov-reporter": "^1.3.0", | ||
"nyc": "^11.7.3", | ||
"opn": "^5.3.0", | ||
"opn-cli": "^3.1.0", | ||
"schema-utils": "^0.4.5", | ||
"shx": "^0.2.2", | ||
"source-map-support": "^0.5.5", | ||
"ts-node": "^4.1.0", | ||
"tslint": "^5.10.0", | ||
"tslint-loader": "^3.5.3", | ||
"typescript": "^2.8.3", | ||
"uglifyjs-webpack-plugin": "^1.2.5", | ||
"webpack": "^2.7.0", | ||
"webpack-node-externals": "^1.7.2" | ||
}, | ||
"module:disabled": "", | ||
"module:doc": "https://github.com/dherman/defense-of-dot-js/blob/master/proposal.md" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
4046853
188
32606