Socket
Socket
Sign inDemoInstall

math.gl

Package Overview
Dependencies
6
Maintainers
2
Versions
100
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.0 to 1.0.0-alpha.1

CHANGELOG

117

package.json
{
"name": "math.gl",
"version": "0.0.0",
"description": "",
"author": "Balthazar",
"license": "MIT"
"description": "Class wrappers for gl-matrix",
"license": "MIT",
"version": "1.0.0-alpha.1",
"keywords": [
"webgl",
"javascript",
"math",
"matrix",
"matrix4",
"vector",
"vector2",
"vector3",
"vector4",
"quaternion",
"3d"
],
"repository": {
"type": "git",
"url": "https://github.com/ibgreen/math.gl.git"
},
"main": "dist/index.js",
"module": "dist-es6/index.js",
"files": [
"dist",
"dist-es6",
"src"
],
"scripts": {
"start": "(cd examples/layer-browser && (path-exists node_modules || npm i) && npm run start-local)",
"build-clean": "rm -fr dist dist-es6 && mkdir -p dist dist-es6",
"build-es6": "rm -fr dist-es6 && babel src --out-dir dist-es6 --source-maps inline",
"build-es5": "rm -fr dist && babel src --out-dir dist --plugins=transform-es2015-modules-commonjs --source-maps inline",
"build": "npm run build-clean && npm run build-es6 && npm run build-es5",
"cover": "NODE_ENV=test nyc --reporter html --reporter cobertura --reporter=lcov npm run test-cover",
"lint": "eslint src test examples && npm run lint-yarn",
"lint-yarn": "!(grep -q unpm.u yarn.lock) || (echo 'Please rebuild yarn file using public npmrc' && false)",
"publish-prod": "npm run build && npm run test && npm run test-dist && npm publish",
"publish-beta": "npm run build && npm run test && npm run test-dist && npm publish --tag beta",
"test": "npm run lint && npm run build && npm run test-node",
"test-fast": "npm run test-node",
"test-cover": "NODE_ENV=test tape -r babel-register test/node.js && nyc report",
"test-node": "node test/node.js",
"test-dist": "node test/node-dist.js",
"test-browser": "webpack-dev-server --env.test --progress --hot --open",
"bench": "node test/bench/node.js",
"bench-browser": "webpack-dev-server --env.bench --progress --hot --open"
},
"dependencies": {
"gl-mat4": "^1.1.4",
"gl-quat": "^1.0.0",
"gl-vec2": "^1.0.0",
"gl-vec3": "^1.0.3",
"gl-vec4": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.22.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.4.3",
"benchmark": "^2.1.3",
"buble": "^0.15.1",
"buble-loader": "^0.4.0",
"coveralls": "^2.13.0",
"eslint": "^3.0.0",
"eslint-config-uber-es2015": "^3.0.0",
"eslint-plugin-react": "~6.7.0",
"faucet": "0.0.1",
"module-alias": "^2.0.0",
"nyc": "^10.2.0",
"pre-commit": "^1.2.2",
"raw-loader": "^0.5.1",
"reify": "^0.4.4",
"source-map-loader": "^0.2.1",
"tap-browser-color": "^0.1.2",
"tape": "^4.5.1",
"tape-catch": "^1.0.4",
"transform-loader": "^0.2.3",
"uglify-js": "^2.6.1",
"webpack": "^2.4.0",
"webpack-dev-server": "^2.4.0"
},
"nyc": {
"sourceMap": false,
"instrument": false,
"include": [
"src/**/*.js"
],
"exclude": [
"test/**/*.js",
"src/layers/deprecated"
]
},
"babel": {
"presets": [
[
"es2015",
{
"modules": false
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc