-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
86 lines (86 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "kld-intersections",
"version": "0.7.0",
"description": "A library of intersection algorithms covering all SVG shape types",
"author": {
"name": "Kevin Lindsey",
"email": "kevin@kevlindev.com"
},
"contributors": [
{
"name": "Robert Benko (Quazistax)",
"email": "quazistax@gmail.com"
},
"Brett Zamir"
],
"license": "BSD-3-Clause",
"bugs": "https://github.com/thelonious/kld-intersections/issues",
"homepage": "https://github.com/thelonious/kld-intersections",
"repository": {
"type": "git",
"url": "git://github.com/thelonious/kld-intersections.git"
},
"main": "dist/index-umd.js",
"module": "index.js",
"browserslist": [
"cover 100%"
],
"scripts": {
"eslint": "eslint --ext js,md .",
"rollup": "rollup -c",
"test": "npm run eslint && npm run rollup && mocha --require @babel/register",
"start": "static -p 8055",
"build-docs": "rm -rf docs/jsdoc/*;jsdoc --pedantic -c docs/jsdoc-config.js .",
"open-docs": "opn http://localhost:8055/docs/jsdoc/ && npm start"
},
"keywords": [
"intersection",
"svg",
"arc",
"bezier",
"circle",
"ellipse",
"line",
"path",
"polygon",
"rectangle"
],
"dependencies": {
"kld-affine": "^2.1.1",
"kld-path-parser": "^0.2.1",
"kld-polynomial": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"@mysticatea/eslint-plugin": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-ash-nazg": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^4.8.4",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^8.0.2",
"esm": "^3.2.25",
"jsdoc": "^3.6.4",
"kld-contours": "^0.3.2",
"mocha": "^6.2.3",
"node-static": "^0.7.11",
"opn-cli": "^4.1.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-terser": "^4.0.4",
"typescript": "^3.8.3"
},
"engines": {
"node": ">= 10.15.3"
}
}