-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 996 Bytes
/
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
{
"name": "openseadragonrgb",
"version": "1.2.0",
"description": "An OpenSeadragon plugin to allow reading the rgb values of image pixels.",
"main": "dist/openseadragonrgb.js",
"scripts": {
"prebuild": "eslint src/rgb.js",
"build": "terser src/rgb.js --source-map --output dist/openseadragonrgb.js",
"postbuild": "echo - - - - build $npm_package_name",
"watch": "onchange --initial \"src/*.js\" -- npm run build --silent"
},
"repository": {
"type": "git",
"url": "git+https://github.com/picturae/openseadragonrgb.git"
},
"keywords": [
"openseadragon",
"rgb"
],
"author": "Petar Petrov",
"license": "MIT",
"bugs": {
"url": "https://github.com/picturae/openseadragonrgb/issues"
},
"homepage": "https://github.com/picturae/openseadragonrgb#readme",
"peerDependencies": {
"OpenSeadragon": "^2.0.0+"
},
"dependencies": {},
"devDependencies": {
"eslint": "^6.5.1",
"onchange": "^6.1.0",
"terser": "^4.3.4"
}
}