mt-polygon-simplification/lib/simplify-js/package.json

39 lines
854 B
JSON
Raw Normal View History

2019-07-14 20:37:26 +02:00
{
"name": "simplify-js",
"version": "1.2.3",
"description": "A high-performance JavaScript 2D/3D polyline simplification library",
"homepage": "http://mourner.github.com/simplify-js/",
"author": "Vladimir Agafonkin",
"license": "BSD-2-Clause",
"keywords": [
"math",
"geometry",
"polyline",
"simplification"
],
"repository": {
"type": "git",
"url": "git://github.com/mourner/simplify-js.git"
},
"main": "simplify.js",
"files": [
"index.d.ts",
"simplify.js"
],
"types": "index.d.ts",
"devDependencies": {
"benchmark": "^2.1.4",
"faucet": "0.0.1",
"jshint": "^2.9.5",
"tape": "^4.8.0"
},
"scripts": {
"test": "jshint simplify.js test/test.js && node test/test.js | faucet"
},
"jshintConfig": {
"quotmark": "single",
"trailing": true,
"unused": true
}
}