This repository was archived by the owner on Nov 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.38 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.38 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
{
"name": "slideatlas-viewer",
"version": "4.4.1",
"description": "A multiresolution image viewer, optimized for whole slide images.",
"homepage": "https://slide-atlas.org/",
"bugs": {
"url": "https://github.com/SlideAtlas/SlideAtlas-viewer/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/SlideAtlas/SlideAtlas-viewer.git"
},
"dependencies": {
"file-saver": "1.3.3",
"gl-matrix": "2.3.2",
"jquery": "3.2.1",
"jquery-ui-dist": "1.12.1",
"objectid-js": "1.0.2",
"spectrum-colorpicker": "1.8.0"
},
"devDependencies": {
"eslint": "~3.19.0",
"eslint-config-semistandard": "11.0.0",
"eslint-config-standard": "~10.2.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-node": "4.2.2",
"eslint-plugin-promise": "~3.5.0",
"eslint-plugin-standard": "~3.0.1",
"grunt": "~1.0.1",
"grunt-cli": "~1.2.0",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-uglify": "3.0.0",
"grunt-contrib-watch": "^1.1.0"
},
"scripts": {
"build": "grunt",
"watch": "grunt watch",
"test": "eslint .",
"preversion": "npm install && npm run-script build && npm test",
"version": "git checkout -B bump-version",
"postversion": "git push origin bump-version --tags",
"prepublish": "rm -rf dist/* && npm run-script build"
}
}