-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.81 KB
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
{
"name": "ulabel",
"description": "An image annotation tool.",
"version": "0.23.3",
"main": "dist/ulabel.min.js",
"module": "dist/ulabel.min.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./dist/ulabel.min.js"
},
"./min": {
"types": "./index.d.ts",
"default": "./dist/ulabel.min.js"
},
"./debug": {
"types": "./index.d.ts",
"default": "./dist/ulabel.js"
}
},
"scripts": {
"test": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" jest",
"test:watch": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" jest --watch",
"test:coverage": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" jest --coverage",
"test:min": "cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" ULABEL_BUILD=min jest",
"test:both": "npm run test && npm run test:min",
"test:e2e": "playwright test",
"demo": "node demo.js",
"clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\"",
"build": "npm run clean && tsc && webpack --mode production",
"build-dev": "npm run clean && tsc && webpack --mode development",
"build-and-demo": "npm run build && npm run demo",
"build-dev-and-demo": "npm run build-dev && npm run demo",
"build-and-test": "npm run build && npm run test:both",
"prepare": "husky",
"lint": "eslint . --no-fix"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts}": "eslint --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/SenteraLLC/ulabel"
},
"keywords": [
"image",
"annotation",
"object detection",
"segmentation"
],
"author": "Nicholas Heller <helle246@umn.edu> (https://www-users.cs.umn.edu/~helle246/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SenteraLLC/ulabel/issues"
},
"homepage": "https://github.com/SenteraLLC/ulabel",
"unpkg": "dist/ulabel.min.js",
"devDependencies": {
"@eslint/config-inspector": "^1.3.0",
"@eslint/js": "^9.11.1",
"@playwright/test": "^1.56.0",
"@stylistic/eslint-plugin": "^2.8.0",
"@turf/turf": "^6.5.0",
"@types/eslint__js": "^8.42.3",
"@types/jquery": "^3.5.31",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"baseline-browser-mapping": "^2.9.14",
"cross-env": "^7.0.3",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"express": "^4.17.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"jquery": "^3.5.1",
"lint-staged": "^15.2.10",
"playwright": "^1.40.0",
"polygon-clipping": "^0.15.7",
"typescript": "^5.6.2",
"typescript-eslint": "^8.46.1",
"uuidv4": "^6.2.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.3.1"
}
}