This repository has been archived by the owner on May 22, 2023. It is now read-only.
forked from sylvaindubus/react-prismazoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.04 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
{
"name": "@dior/react-prismazoom",
"version": "1.2.0",
"description": "A pan and zoom component for React, using CSS transformations.",
"author": "Sylvain DUBUS <svn.dbs@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/sylvaindubus/react-prismazoom"
},
"keywords": [
"react",
"react-component",
"zoom",
"pan",
"drag",
"pinch-zoom",
"css3"
],
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-file",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy",
"test": "intern config='intern.json' || true",
"watchTest": "watch --interval=0.5 'npm run test' src tests"
},
"peerDependencies": {
"prop-types": "^15.6",
"react": "^16",
"react-dom": "^16"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"css-loader": "^1.0.0",
"enzyme": "^3.4.1",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-standard": "^4.0.1",
"file-loader": "^1.1.11",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"intern": "^4.5.0",
"jsdom": "^11.12.0",
"prop-types": "^15.6",
"react": "^16",
"react-dom": "^16",
"style-loader": "^0.21.0",
"watch": "^1.0.2",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.8.2"
},
"optionalDependencies": {
"fsevents": "*"
}
}