forked from xuxiaoxin/openseadragon-annotations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.46 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
93
94
95
96
97
{
"name": "openseadragon-annotations",
"version": "1.0.2",
"description": "OpenSeadragon annotations plugin",
"homepage": "https://github.com/Emigre/openseadragon-annotations",
"main": "dist/openseadragon-annotations.js",
"scripts": {
"prestart": "shx rm -rf dist",
"start": "webpack --progress --config ./webpack.config.dev.js",
"test": "ava -v",
"tdd": "ava -w",
"prebuild": "shx rm -rf dist",
"build": "webpack --progress",
"prepublish": "npm run build",
"coverage": "nyc ava",
"lint": "eslint --ext .js,.jsx . || shx echo"
},
"repository": {
"type": "git",
"url": "https://github.com/Emigre/openseadragon-annotations.git"
},
"author": "Gaspar Rey <[email protected]> (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/**/*.{jsx,js}",
"require": [
"babel-register",
"./ava.setup.js"
]
},
"nyc": {
"extension": [
".jsx"
],
"exclude": [
"**/*.spec.js",
"**/*.setup.js"
],
"reporter": [
"lcov",
"text",
"html"
]
},
"keywords": [
"deep",
"zoom",
"images",
"dzi",
"annotations",
"openseadragon"
],
"devDependencies": {
"ava": "^0.15.2",
"babel-core": "^6.7.7",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-react-jsx": "^6.6.5",
"babel-plugin-transform-runtime": "^6.7.5",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-loose": "^7.0.0",
"babel-runtime": "^6.6.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.12.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.8.5",
"flux": "^2.1.1",
"jsdom": "^9.4.1",
"nyc": "^7.1.0",
"preact": "^5.7.0",
"shx": "^0.1.2",
"sinon": "^1.15.4",
"url-loader": "^0.5.6",
"webpack": "^1.10.5",
"webpack-dev-server": "^1.14.1",
"preact-compat": "^3.14.3",
"preact-css-transition-group": "^1.1.1",
"react-dd-menu": "^2.0.0"
},
"peerDependencies": {
"openseadragon": "^2.2.1"
},
"dependencies": {
"openseadragon": "^2.2.1",
"react": "^15.5.3",
"react-addons-css-transition-group": "^15.5.2",
"react-dom": "^15.5.3"
}
}