-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.15 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
{
"name": "iiif-cropper",
"version": "0.1.0",
"description": "A IIIF image cropping library",
"author": "Drew Winget",
"license": "Apache 2.0",
"keywords": "iiif, crop, jcrop, openseadragon, zooming",
"repository": {
"type": "git",
"url": "https://github.com/sul-dlss/iiif-cropper.git"
},
"engines": {
"node": ">= 0.10.0"
},
"main": "src/iiifCrop.js",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-concat": "~0.4.0",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "~0.5.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-istanbul": "^0.6.1",
"grunt-jscs": "^2.5.0",
"grunt-karma": "^2.0.0",
"grunt-webpack": "^1.0.11",
"jasmine": "^2.4.1",
"jquery": "^3.1.0",
"karma": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"karma-webpack": "^1.7.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
},
"dependencies": {
"event-emitter": "^0.3.5",
"openseadragon": "^2.1.0"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run --browsers PhantomJS"
}
}