-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.8 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
110
111
112
{
"name": "test",
"description": "An Aurelia client application.",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"@aspnet/signalr": "^1.0.4",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.0",
"aurelia-polyfills": "^1.3.0",
"aurelia-toolbelt": "1.2.1",
"bluebird": "^3.5.1"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.115",
"@types/node": "^10.5.5",
"@types/webpack": "^4.4.8",
"aspnet-webpack": "^3.0.0",
"aurelia-cli": "^0.33.1",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.1.1",
"aurelia-protractor-plugin": "^1.0.6",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"aurelia-tools": "^2.0.0",
"aurelia-webpack-plugin": "^3.0.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"del": "^3.0.0",
"expose-loader": "^0.7.5",
"extract-text-webpack-plugin": "next",
"file-loader": "^1.1.11",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-rename": "^1.4.0",
"gulp-util": "^3.0.8",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jest": "^23.4.2",
"jest-cli": "^23.4.2",
"json-loader": "^0.5.7",
"minimatch": "^3.0.4",
"node-sass": "^4.9.2",
"nps": "^5.9.2",
"nps-utils": "^1.6.0",
"opn": "^5.3.0",
"protractor": "^5.4.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.21.0",
"through2": "^2.0.3",
"ts-jest": "^23.0.1",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"typescript": "^3.0.1",
"uglify-js": "^3.4.6",
"url-loader": "^1.0.1",
"vinyl-fs": "^3.0.3",
"wait-on": "^2.1.0",
"webpack": "^4.16.3",
"webpack-bundle-analyzer": "latest",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-hot-middleware": "^2.22.3"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"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"
]
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"start": "nps",
"test": "nps test"
},
"main": "dist/app.bundle.js"
}