forked from thingworx-field-work/SvgViewerWidgetTWX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.68 KB
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
{
"name": "svgViewer",
"version": "1.2.1",
"description": "A svg viewer allowing viewing svg files, as well as interacting with them dynamically.",
"thingworxServer": "http://localhost:8015/",
"thingworxUser": "Administrator",
"thingworxPassword": "Administrator12345",
"author": "placatus@iqnox.com",
"minimumThingWorxVersion": "6.0.0",
"homepage": "https://github.com/ptc-iot-sharing/SvgViewerWidgetTWX",
"autoUpdate": {
"gitHubURL": "https://api.github.com/repos/ptc-iot-sharing/SvgViewerWidgetTWX/releases/latest",
"giteaURL": "http://roicentersvn/api/v1/repos/placatus/SvgViewerWidget/releases/latest"
},
"repository": {
"type": "git",
"url": "https://github.com/ptc-iot-sharing/SvgViewerWidgetTWX.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"buildDev": "webpack --mode development",
"watch": "webpack --watch --mode development",
"server": "webpack-dev-server --open",
"upload": "webpack --mode development --env.upload",
"init": "webpack --env.init",
"prepublishOnly": "rm -rf dist && mkdir dist && yarn run build && mv zip/* dist && yarn run buildDev && mv zip/* dist"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.5.5",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.0.5",
"@types/jquery": "^3.3.31",
"@types/node": "^14.6.4",
"@types/webpack-env": "^1.14.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"css-loader": "^4.2.2",
"dtsbundler-webpack-plugin": "github:stefan-lacatus/dtsbundler-webpack-plugin#master",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.1.0",
"fork-ts-checker-webpack-plugin": "^5.1.0",
"jimp": "^0.16.1",
"request": "^2.88.0",
"responsive-loader": "^2.0.2",
"source-map-loader": "^1.1.0",
"style-loader": "^1.0.0",
"ts-loader": "^8.0.3",
"typescript": "^4.0.2",
"url-loader": "^4.1.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0",
"webpack-encoding-plugin": "^0.3.1",
"xml2js": "^0.4.19",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"panzoom": "^9.2.5",
"typescriptwebpacksupport": "^2.0.9"
}
}