source: node_modules/delaunator/package.json

Last change on this file was e4c61dd, checked in by istevanoska <ilinastevanoska@…>, 6 months ago

Prototype 1.1

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[e4c61dd]1{
2 "name": "delaunator",
3 "version": "5.0.1",
4 "description": "An incredibly fast JavaScript library for Delaunay triangulation of 2D points",
5 "main": "index.js",
6 "module": "index.js",
7 "type": "module",
8 "jsdelivr": "delaunator.min.js",
9 "unpkg": "delaunator.min.js",
10 "sideEffects": false,
11 "dependencies": {
12 "robust-predicates": "^3.0.2"
13 },
14 "devDependencies": {
15 "@rollup/plugin-node-resolve": "^15.2.3",
16 "@rollup/plugin-terser": "^0.4.4",
17 "eslint": "^8.56.0",
18 "eslint-config-mourner": "^3.0.0",
19 "rollup": "^4.9.6"
20 },
21 "repository": {
22 "type": "git",
23 "url": "https://github.com/mapbox/delaunator.git"
24 },
25 "scripts": {
26 "lint": "eslint index.js test/test.js bench.js rollup.config.js docs/diagrams.js",
27 "pretest": "npm run lint",
28 "test": "node --test-reporter spec test/test.js",
29 "cov": "node --experimental-test-coverage test/test.js",
30 "bench": "node bench.js",
31 "build": "rollup -c",
32 "start": "rollup -cw",
33 "prepublishOnly": "npm test && npm run build"
34 },
35 "files": [
36 "index.js",
37 "delaunator.js",
38 "delaunator.min.js"
39 ],
40 "eslintConfig": {
41 "extends": "mourner",
42 "rules": {
43 "no-sequences": 0
44 },
45 "parserOptions": {
46 "ecmaVersion": 2020
47 }
48 },
49 "keywords": [
50 "delaunay triangulation",
51 "computational geometry",
52 "algorithms"
53 ],
54 "author": "Vladimir Agafonkin",
55 "license": "ISC"
56}
Note: See TracBrowser for help on using the repository browser.