| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "marchingsquares",
- "description": "MarchingSquaresJS - An implementation of the Marching Squares algorithm featuring Isocontour and Isoband computation.",
- "version": "1.3.3",
- "author": "Ronny Lorenz <ronny@tbi.univie.ac.at>",
- "contributors": [
- {"name": "Stefano Borghi"},
- {"name": "Peter Kerpedjiev"}
- ],
- "license": "AGPL-3.0",
- "main": "./dist/marchingsquares.js",
- "module": "./dist/marchingsquares-esm.js",
- "directories": {
- "example": "./example",
- "dist": "./dist"
- },
- "scripts": {
- "lint": "eslint --fix src/**",
- "build": "rollup -c",
- "pretest": "rollup -c rollup.config.test.js",
- "test": "node ./test/test.js"
- },
- "homepage": "https://github.com/RaumZeit/MarchingSquares.js/blob/master/README.md",
- "repository": {
- "type": "git",
- "url": "git://github.com/RaumZeit/MarchingSquares.js.git"
- },
- "bugs": {
- "url": "https://github.com/RaumZeit/MarchingSquares.js/issues"
- },
- "keywords": [
- "marchingsquares",
- "marching",
- "squares",
- "isocontour",
- "isoband",
- "isoline"
- ],
- "devDependencies": {
- "eslint": "5.0.1",
- "load-json-file": "^2.0.0",
- "rollup": "^0.60.7",
- "rollup-plugin-eslint": "^4.0.0",
- "rollup-plugin-uglify": "^4.0.0",
- "tape": "^4.9.1"
- }
- }
|