-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.39 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
87
88
89
90
91
92
{
"author": "Muhammad Ubaid Raza <[email protected]>",
"browser": "dist/contours.ts.cjs.production.min.js",
"description": "Extract shapes & contours in an image, for browsers and node.js.",
"devDependencies": {
"@size-limit/preset-small-lib": "^4.9.1",
"@types/eslint": "^7.2.6",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/jest": "^26.0.19",
"@types/prettier": "^2.1.6",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-react-app": "^6.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-config-standard-with-typescript": "^19.0.1",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"size-limit": "^4.9.1",
"ts-jest": "^26.4.4",
"tsdx": "^0.14.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"dependencies": {
"simplify-js": "^1.2.4"
},
"engines": {
"node": ">=10"
},
"files": [
"dist",
"src"
],
"homepage": "https://github.com/mubaidr/contours.ts",
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"keywords": [
"contour",
"shape",
"image-pocessing",
"moore-neighbourhood",
"tracing"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/contours.ts.esm.js",
"name": "contours.ts",
"peerDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/mubaidr/contours.ts.git"
},
"scripts": {
"analyze": "size-limit --why",
"build": "tsdx build",
"lint": "tsdx lint --fix",
"prepare": "tsdx build",
"size": "size-limit",
"start": "tsdx watch",
"test": "tsdx test",
"test:watch": "tsdx test --watch"
},
"size-limit": [
{
"limit": "10 KB",
"path": "dist/contours.ts.cjs.production.min.js"
},
{
"limit": "10 KB",
"path": "dist/contours.ts.esm.js"
}
],
"typings": "dist/index.d.ts",
"version": "0.2.2"
}