-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 2.79 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
{
"name": "bundle",
"description": "An Aurelia client application.",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"@cryptographix/se-core": "^0.3.0",
"@cryptographix/sim-core": "^0.3.1",
"@fortawesome/fontawesome-free": "^5.15.4",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-dialog": "^2.0.0",
"aurelia-fetch-client": "^1.8.2",
"autosize": "^5.0.1",
"bulma": "^0.9.3",
"jquery": "^3.6.0",
"popper.js": "^1.16.1",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"alameda": "^1.4.0",
"aurelia-cli": "^2.0.3",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^2.0.0",
"aurelia-testing": "^1.0.0",
"connect": "^3.7.0",
"connect-history-api-fallback": "^1.6.0",
"connect-injector": "^0.4.4",
"debounce": "^1.2.1",
"del": "^6.0.0",
"eslint": "^8.3.0",
"gulp": "^4.0.2",
"gulp-dart-sass": "^1.0.2",
"gulp-eslint": "^6.0.0",
"gulp-if": "^3.0.0",
"gulp-plumber": "^1.2.1",
"gulp-rename": "^2.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"gulp-watch": "^5.0.1",
"jest": "^27.3.1",
"jest-cli": "^27.3.1",
"jest-transform-stub": "^2.0.0",
"minimatch": "^3.0.4",
"node-sass-package-importer": "^5.3.2",
"open": "^8.4.0",
"promise-polyfill": "^8.2.1",
"serve-static": "^1.14.1",
"server-destroy": "^1.0.1",
"socket.io": "^4.4.0",
"text": "requirejs/text",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"scripts": {
"build": "au build --env prod",
"start": "au run",
"test": "au test"
},
"engines": {
"node": ">=10.12.0"
},
"jest": {
"moduleNameMapper": {
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding",
"^.+\\.css$": "<rootDir>/test/mock-css"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(css|less|sass|scss|styl|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "jest-transform-stub",
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.(ts|js)$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}