UNPKG

vecks

Version:

2D and 3D Vector Algebra library

54 lines (53 loc) 1.34 kB
{ "name": "vecks", "version": "3.9.2", "description": "2D and 3D Vector Algebra library", "keywords": [ "vector", "algebra" ], "main": "lib/index.js", "scripts": { "test:lint": "eslint --fix src test", "test:unit": "mocha --require @babel/register --recursive test/*.js", "test:unit:watch": "npm run test:unit -- --watch", "test": "npm run test:lint && npm run test:unit", "compile": "babel -d lib/ src/", "prepublishOnly": "npm audit && rimraf lib/ && npm run compile" }, "repository": { "type": "git", "url": "git@github.com:bjnortier/vecks.git" }, "author": "Ben Nortier <ben@bjnortier.com>", "license": "MIT", "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.7", "@babel/preset-env": "^7.8.7", "@babel/register": "^7.8.6", "eslint": "^6.8.0", "eslint-config-standard": "^14.1.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-node": "^10.0.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "expect": "^24.9.0", "mocha": "^6.2.2", "rimraf": "^2.7.1" }, "dependencies": {}, "standard": { "globals": [ "describe", "it", "before", "beforeEach", "after" ], "ignore": [ "lib/" ] } }