-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.79 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.79 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
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
{
"name": "day-81",
"description": "An Aurelia client application.",
"version": "0.1.0",
"license": "MIT",
"dependencies": {
"aurelia-bootstrapper": "2.3.2",
"aurelia-animator-css": "1.0.4"
},
"devDependencies": {
"aurelia-cli": "1.2.3",
"aurelia-testing": "1.0.0",
"aurelia-tools": "2.0.0",
"gulp": "4.0.0",
"minimatch": "3.0.4",
"through2": "3.0.0",
"vinyl-fs": "3.0.3",
"promise-polyfill": "8.1.0",
"regenerator-runtime": "0.13.2",
"babel-eslint": "10.0.1",
"eslint": "latest",
"babel-loader": "8.0.5",
"babel-plugin-istanbul": "5.1.1",
"@babel/plugin-proposal-decorators": "7.4.0",
"@babel/plugin-proposal-class-properties": "7.4.0",
"@babel/preset-env": "7.4.2",
"@babel/core": "7.4.0",
"@babel/register": "7.4.0",
"html-webpack-plugin": "3.2.0",
"copy-webpack-plugin": "5.0.0",
"mini-css-extract-plugin": "0.4.3",
"aurelia-webpack-plugin": "3.0.0",
"duplicate-package-checker-webpack-plugin": "3.0.0",
"clean-webpack-plugin": "1.0.1",
"webpack": "4.27.0",
"webpack-cli": "3.1.2",
"webpack-dev-server": "3.1.9",
"expose-loader": "0.7.5",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"css-loader": "1.0.0",
"file-loader": "2.0.0",
"app-settings-loader": "1.0.2",
"json-loader": "0.5.7",
"html-loader": "0.5.5",
"istanbul-instrumenter-loader": "3.0.1",
"webpack-bundle-analyzer": "3.0.4",
"tree-kill": "1.2.1",
"jest": "24.1.0",
"jest-cli": "24.1.0",
"jest-transform-stub": "2.0.0",
"aurelia-loader-nodejs": "1.0.1",
"aurelia-pal-nodejs": "1.2.0",
"babel-jest": "24.5.0"
},
"scripts": {
"build": "webpack --env.production --extractCss",
"start": "webpack-dev-server --extractCss",
"build:dev": "webpack --extractCss",
"analyze": "webpack --env.production --analyze",
"test": "au test"
},
"engines": {
"node": ">=8.9.0"
},
"jest": {
"moduleNameMapper": {
"aurelia-binding$": "<rootDir>/node_modules/aurelia-binding"
},
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"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",
".+\\.js$": "babel-jest"
},
"testRegex": "\\.spec\\.js$",
"setupFiles": [
"<rootDir>/test/jest-pretest.js"
],
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!**/*.spec.js",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}