UNPKG

3.04 kBJSONView Raw
1{
2 "name": "aurelia-webpack-plugin",
3 "version": "5.0.3",
4 "description": "A plugin for webpack that enables bundling Aurelia applications.",
5 "keywords": [
6 "aurelia",
7 "webpack",
8 "plugin"
9 ],
10 "homepage": "http://aurelia.io",
11 "bugs": {
12 "url": "https://github.com/aurelia/webpack-plugin/issues"
13 },
14 "license": "MIT",
15 "author": "Rob Eisenberg <rob@bluespire.com> (http://robeisenberg.com/)",
16 "contributors": [
17 {
18 "name": "Arjen de Blok"
19 },
20 {
21 "name": "Bazyli Brzóska <bazyli.brzoska@gmail.com> (https://invent.life)"
22 },
23 {
24 "name": "Joel Dumas"
25 }
26 ],
27 "main": "dist/index.js",
28 "types": "dist/types/index.d.ts",
29 "files": [
30 "dist",
31 "runtime"
32 ],
33 "scripts": {
34 "build": "tsc",
35 "build:watch": "tsc --watch",
36 "test": "cd tests/app-basic && npm run build:ci",
37 "preversion": "npm run test",
38 "version": "npm run build && git add ."
39 },
40 "repository": {
41 "type": "git",
42 "url": "http://github.com/aurelia/webpack-plugin"
43 },
44 "dependencies": {
45 "aurelia-loader-webpack": "^2.2.4",
46 "bundle-loader": "^0.5.6",
47 "minimatch": "^3.0.4",
48 "parse5": "^5.1.1"
49 },
50 "peerDependencies": {
51 "webpack": ">= 5.0.0"
52 },
53 "devDependencies": {
54 "@types/chai": "^4.2.22",
55 "@types/minimatch": "^3.0.5",
56 "@types/mocha": "^9.0.0",
57 "@types/node": "^16.11.6",
58 "@types/parse5": "^6.0.2",
59 "aurelia-binding": "^2.5.4",
60 "aurelia-bootstrapper": "^2.3.3",
61 "aurelia-chart": "^0.3.4",
62 "aurelia-dependency-injection": "^1.5.2",
63 "aurelia-dialog": "^2.0.0",
64 "aurelia-event-aggregator": "^1.0.3",
65 "aurelia-framework": "^1.3.1",
66 "aurelia-history": "^1.2.1",
67 "aurelia-history-browser": "^1.4.0",
68 "aurelia-loader": "^1.0.2",
69 "aurelia-logging": "^1.5.2",
70 "aurelia-logging-console": "^1.1.1",
71 "aurelia-metadata": "^1.0.7",
72 "aurelia-pal": "^1.8.2",
73 "aurelia-pal-browser": "^1.8.1",
74 "aurelia-path": "^1.1.7",
75 "aurelia-polyfills": "^1.3.4",
76 "aurelia-route-recognizer": "^1.3.2",
77 "aurelia-router": "^1.7.1",
78 "aurelia-store": "^1.7.0",
79 "aurelia-task-queue": "^1.3.3",
80 "aurelia-templating": "^1.10.4",
81 "aurelia-templating-binding": "^1.5.3",
82 "aurelia-templating-resources": "^1.13.1",
83 "aurelia-templating-router": "^1.4.0",
84 "aurelia-testing": "^1.0.0",
85 "chai": "^4.3.4",
86 "copy-webpack-plugin": "^9.0.1",
87 "css-loader": "^6.5.1",
88 "html-loader": "^3.0.1",
89 "html-webpack-plugin": "^5.5.0",
90 "karma": "^6.3.7",
91 "karma-chrome-launcher": "^3.1.0",
92 "karma-mocha": "^2.0.1",
93 "karma-sourcemap-loader": "^0.3.8",
94 "karma-webpack": "^5.0.0",
95 "mini-css-extract-plugin": "^2.4.4",
96 "mocha": "^9.1.3",
97 "rimraf": "^3.0.2",
98 "ts-loader": "^9.2.6",
99 "tslib": "^2.3.1",
100 "typescript": "^4.4.4",
101 "webpack": "^5.61.0",
102 "webpack-cli": "^4.9.1",
103 "webpack-dev-server": "^4.4.0"
104 }
105}