-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
109 lines (109 loc) · 3 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
{
"name": "aurelia-webpack-plugin",
"version": "5.0.6",
"description": "A plugin for webpack that enables bundling Aurelia applications.",
"keywords": [
"aurelia",
"webpack",
"plugin"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/webpack-plugin/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"contributors": [
{
"name": "Arjen de Blok"
},
{
"name": "Bazyli Brzóska <[email protected]> (https://invent.life)"
},
{
"name": "Joel Dumas"
}
],
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"runtime"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "cd tests/app-basic && npm run build:ci",
"preversion": "npm run test",
"version": "npm run build && git add .",
"cut-release": "npm version --git-tag-version false --"
},
"repository": {
"type": "git",
"url": "http://github.com/aurelia/webpack-plugin"
},
"dependencies": {
"aurelia-loader-webpack": "^2.2.4",
"minimatch": "^3.0.4",
"loader-utils": "^1.1.0",
"parse5": "^5.1.1"
},
"peerDependencies": {
"webpack": ">= 5.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/minimatch": "^3.0.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/parse5": "^6.0.2",
"aurelia-binding": "^2.5.4",
"aurelia-bootstrapper": "^2.4.0",
"aurelia-chart": "^0.3.4",
"aurelia-dependency-injection": "^1.5.2",
"aurelia-dialog": "^2.0.0",
"aurelia-event-aggregator": "^1.0.3",
"aurelia-framework": "^1.4.1",
"aurelia-history": "^1.2.1",
"aurelia-history-browser": "^1.4.0",
"aurelia-loader": "^1.0.2",
"aurelia-logging": "^1.5.2",
"aurelia-logging-console": "^1.1.1",
"aurelia-metadata": "^1.0.7",
"aurelia-pal": "^1.8.2",
"aurelia-pal-browser": "^1.8.1",
"aurelia-path": "^1.1.7",
"aurelia-polyfills": "^1.3.4",
"aurelia-route-recognizer": "^1.3.2",
"aurelia-router": "^1.7.1",
"aurelia-store": "^1.7.0",
"aurelia-task-queue": "^1.3.3",
"aurelia-templating": "^1.11.1",
"aurelia-templating-binding": "^1.6.0",
"aurelia-templating-resources": "^1.14.3",
"aurelia-templating-router": "^1.4.0",
"aurelia-testing": "^1.0.0",
"chai": "^4.3.4",
"chart.js": "^3.7.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.5.1",
"html-loader": "^3.0.1",
"html-webpack-plugin": "^5.5.0",
"karma": "^6.3.19",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-webpack": "^5.0.0",
"link-parent-bin": "^2.0.0",
"mini-css-extract-plugin": "^2.4.4",
"mocha": "^9.1.3",
"redux": "^4.2.0",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"typescript": "^4.4.4",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.4.0"
}
}