forked from tify-iiif-viewer/tify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.84 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "tify",
"version": "0.20.1",
"description": "TIFY is a slim and mobile-friendly IIIF document viewer.",
"homepage": "https://github.com/subugoe/tify",
"repository": {
"type:": "git",
"url": "https://github.com/subugoe/tify"
},
"bugs": {
"url": "https://github.com/subugoe/tify/issues"
},
"author": "Tobias Schäfer / SUB Göttingen <[email protected]>",
"license": "AGPL-3.0",
"scripts": {
"postinstall": "rm -rf openseadragon && git clone https://github.com/openseadragon/openseadragon.git && cd openseadragon && git checkout tags/v2.3.1",
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs",
"build": "node build/build.js",
"unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
"unit-watch": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"update-gh-pages": "git checkout gh-pages && git rebase master && git push -f origin gh-pages && git checkout master",
"preversion": "rm -rf node_modules && npm install && npm run test",
"version": "npm run build && git add dist",
"postversion": "git push && git push --tags && npm run update-gh-pages && echo Tag v$npm_package_version created. Run \"npm publish\" to publish \"$npm_package_name\" on npmjs.com."
},
"dependencies": {
"axios": "^0.17.1",
"material-design-icons-iconfont": "^3.0.3",
"promise-polyfill": "^6.0.2",
"striptags": "^2.2.1",
"vue": "^2.5.8"
},
"devDependencies": {
"autoprefixer": "^7.1.6",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"banner-webpack-plugin": "^0.2.3",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"codeceptjs": "^1.0.3",
"copy-webpack-plugin": "^4.2.1",
"cross-env": "^5.1.1",
"cross-spawn": "^5.1.0",
"css-loader": "^0.28.7",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-friendly-formatter": "^3.0.0",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.1",
"eslint-plugin-import": "^2.8.0",
"eventsource-polyfill": "^0.9.6",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"friendly-errors-webpack-plugin": "^1.6.1",
"function-bind": "^1.1.1",
"html-webpack-plugin": "^2.30.1",
"import-glob-loader": "^1.1.0",
"inject-loader": "^3.0.1",
"karma": "^1.7.1",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon-chai": "^1.3.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.31",
"karma-webpack": "^2.0.6",
"mocha": "^4.0.1",
"nightmare": "^2.10.0",
"nightmare-upload": "^0.1.1",
"node-notifier": "^5.1.2",
"node-sass": "^4.7.2",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^1.3.0",
"phantomjs-prebuilt": "^2.1.16",
"portfinder": "^1.0.13",
"postcss-import": "^11.0.0",
"postcss-loader": "^2.0.8",
"sass-loader": "^6.0.6",
"semver": "^5.4.1",
"shelljs": "^0.7.8",
"sinon": "^4.1.2",
"sinon-chai": "^2.14.0",
"url-loader": "^0.6.2",
"vue-loader": "^13.5.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.5.8",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.1",
"webpack-dev-server": "^2.9.4",
"webpack-merge": "^4.1.1"
},
"engines": {
"node": ">= 7.0.0",
"npm": ">= 3.10.8"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}