-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 3.24 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
113
114
115
116
117
118
119
120
{
"name": "espn",
"description": "An Aurelia client application.",
"version": "0.1.0",
"repository": {
"type": "???",
"url": "???"
},
"license": "MIT",
"dependencies": {
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.2.0",
"aurelia-dialog": "^2.0.0-rc.3",
"aurelia-polyfills": "^1.3.0",
"bluebird": "^3.5.1"
},
"peerDependencies": {},
"devDependencies": {
"aurelia-cli": "^0.34.0",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.0.0-beta.3.2.0",
"aurelia-testing": "^1.0.0-beta.4.0.0",
"aurelia-tools": "^2.0.0",
"aurelia-webpack-plugin": "^3.0.0-rc.1",
"babel-core": "^6.26.0",
"babel-eslint": "7.2.3",
"babel-jest": "^23.0.0-alpha.0",
"babel-loader": "^7.1.4",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^0.28.11",
"del": "^3.0.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "3.19.0",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.11",
"gulp": "^4.0.0",
"gulp-rename": "^1.2.2",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.0.6",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^3.1.0",
"jest": "^22.4.2",
"jest-cli": "^23.0.0-alpha.0",
"jest-jasmine2": "^23.0.0-alpha.0",
"jest-matchers": "^20.0.3",
"json-loader": "^0.5.7",
"karma": "^2.0.0",
"karma-babel-preprocessor": "^7.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "latest",
"karma-coverage-istanbul-reporter": "^1.4.2",
"karma-jasmine": "^1.1.1",
"karma-mocha-reporter": "latest",
"karma-webpack": "^v4.0.0-beta.0",
"mini-css-extract-plugin": "^0.4.1",
"minimatch": "^3.0.4",
"nps": "^5.8.2",
"nps-utils": "^1.5.0",
"opn": "^5.3.0",
"plugin-error": "^1.0.1",
"style-loader": "^0.20.3",
"through2": "^2.0.3",
"url-loader": "^1.0.1",
"vinyl-fs": "^3.0.2",
"webpack": "^4.1.1",
"webpack-bundle-analyzer": "latest",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "\\.spec\\.(ts|js)x?$",
"setupFiles": [
"<rootDir>/test/jest-pretest.js"
],
"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"
}