-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "iiif-evented-canvas",
"version": "0.0.3-beta",
"description": "An observable representation for IIIF canvases and their image resources to ease rendering management.",
"main": "dist/iiif-evented-canvas.umd.js",
"scripts": {
"serve": "webpack-dev-server",
"test": "jasmine",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"cover": "nyc npm t",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"build:umd": "webpack --output-filename dist/iiif-evented-canvas.umd.js",
"build:umd.min": "webpack --output-filename dist/iiif-evented-canvas.umd.min.js",
"watch:test": "npm t -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sul-dlss/iiif-evented-canvas.git"
},
"keywords": [
"iiif",
"manifest",
"visualisation"
],
"author": "aeschylus",
"license": "Apache-2.0",
"dependencies": {},
"devDependencies": {
"babel-cli": "6.11.4",
"babel-core": "^6.8.0",
"babel-eslint": "^4.1.6",
"babel-istanbul": "^0.6.0",
"babel-istanbul-loader": "0.0.1",
"babel-loader": "^6.2.1",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eventemitter2": "3.0.1",
"install": "0.8.7",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-jasmine": "^0.3.6",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"loader-utils": "^0.2.12",
"npm": "4.3.0",
"npm-run-all": "2.3.0",
"nyc": "7.1.0",
"rimraf": "^2.5.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.4.1"
},
"bugs": {
"url": "https://github.com/sul-dlss/iiif-evented-canvas/issues"
},
"homepage": "https://github.com/sul-dlss/iiif-evented-canvas#readme"
}