-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
92 lines (92 loc) · 2.24 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "openseadragon-annotations",
"version": "1.0.5",
"description": "OpenSeadragon annotations plugin",
"homepage": "https://github.com/Emigre/openseadragon-annotations",
"main": "src/main.js",
"scripts": {
"prestart": "rimraf dist",
"start": "webpack --progress --watch",
"test": "ava -v",
"tdd": "ava -w",
"prebuild": "rimraf dist",
"build": "webpack --progress --env.production",
"coverage": "nyc ava",
"lint": "eslint . --ignore-pattern '/dist/' --ignore-pattern '/coverage/' || shx echo",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "https://github.com/Emigre/openseadragon-annotations.git"
},
"author": "Gaspar Rey <info@gasparrey.com> (http://www.gasparrey.com/)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Emigre/openseadragon-annotations/issues"
},
"ava": {
"babel": "inherit",
"files": "src/**/*.spec.js",
"source": "src/**/*.js",
"require": [
"babel-register",
"./ava.setup.test.js"
]
},
"nyc": {
"extension": [
".js"
],
"exclude": [
"**/*.spec.js",
"**/*.setup.js"
],
"reporter": [
"lcov",
"text",
"html"
]
},
"engines": {
"node": ">=6"
},
"keywords": [
"deep",
"zoom",
"images",
"dzi",
"annotations",
"openseadragon"
],
"dependencies": {
"flux": "^2.1.1",
"preact": "^5.7.0"
},
"devDependencies": {
"ava": "^0.18.2",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.17.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"file-loader": "^1.0.0",
"flow-bin": "^0.42.0",
"jsdom": "^9.11.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.6",
"url-loader": "^0.5.8",
"webpack": "^3.4.1",
"webpack-dev-server": "^2.6.1"
},
"peerDependencies": {
"openseadragon": "^2.2.1"
}
}