-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "bboxjs",
"version": "1.0.0",
"description": "BBoxJS is a light-weight Javascript solution for marking bounding boxes on an image",
"main": "dist/index.js",
"scripts": {
"build": "rollup --config",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "./node_modules/.bin/prettier --write \"src/bbox.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluemellophone/bboxjs.git"
},
"keywords": [
"bbox",
"image",
"processing",
"computer vision",
"bounding box"
],
"author": "Jason Parham",
"license": "ISC",
"bugs": {
"url": "https://github.com/bluemellophone/bboxjs/issues"
},
"homepage": "https://github.com/bluemellophone/bboxjs#readme",
"dependencies": {
"jquery": "^3.5.0",
"rollup": "^2.6.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@rollup/plugin-node-resolve": "^7.1.3",
"prettier": "^2.0.4",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0"
}
}