-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
123 lines (123 loc) · 3.46 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
121
122
123
{
"name": "stats",
"description": "FRC 3223's scouting application.",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/retro3223/stats.git"
},
"license": "MIT",
"dependencies": {
"aurelia-animator-css": "^1.0.2",
"aurelia-binding": "1.6.0",
"aurelia-bootstrap": "^0.1.20",
"aurelia-bootstrapper": "^2.1.1",
"aurelia-dialog": "^1.0.0-rc.2.0.0",
"aurelia-fetch-client": "^1.3.0",
"aurelia-polyfills": "latest",
"aurelia-validation": "1.2.3",
"bluebird": "^3.4.1",
"bootstrap": "^4.0.0-beta.3",
"d3v4": "^4.2.2",
"dexie": "^2.0.1",
"instascan": "^1.0.0",
"javascript-natural-sort": "^0.7.1",
"karma-firefox-launcher": "^1.1.0",
"lodash": "^4.17.4",
"lz-string": "^1.4.4",
"ms": "^2.1.1",
"numeral": "^2.0.6",
"prr": "^1.0.1",
"qrcode-generator": "^1.4.1",
"requirejs": "^2.3.2",
"text": "github:requirejs/text#latest",
"uniq": "^1.0.1",
"urijs": "^1.19.1",
"visibilityjs": "^2.0.2",
"whatwg-fetch": "^2.0.3",
"xlsx": "^0.14.1"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "^23.3.5",
"@types/lodash": "^4.14.69",
"@types/node": "^6.0.45",
"aurelia-cli": "^0.35.1",
"aurelia-loader-nodejs": "^1.0.1",
"aurelia-pal-nodejs": "^1.1.1",
"aurelia-testing": "^1.0.0-beta.3.0.1",
"aurelia-tools": "^1.0.0",
"browser-sync": "^2.13.0",
"connect-history-api-fallback": "^1.2.0",
"debounce": "^1.0.2",
"event-stream": "3.3.4",
"fake-indexeddb": "^2.0.4",
"gulp": "github:gulpjs/gulp#v4.0.0",
"gulp-changed-in-place": "^2.0.3",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.6.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.0.0-alpha",
"gulp-tslint": "^5.0.0",
"gulp-typescript": "^3.1.4",
"gulp-watch": "^4.3.11",
"jasmine-core": "^2.4.1",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"karma": "^3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-typescript-preprocessor": "^0.2.1",
"minimatch": "^3.0.2",
"plugin-error": "^1.0.1",
"sw-precache": "^5.2.1",
"through2": "^2.0.1",
"ts-jest": "^23.10.4",
"tslint": "^3.11.0",
"typescript": "3.1.1",
"uglify-js": "^3.0.19",
"vinyl-fs": "^2.4.3"
},
"jest": {
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.(ts|js)$",
"setupFiles": [
"<rootDir>/test/jest-pretest.ts"
],
"moduleNameMapper": {
"^zxing$": "<rootDir>/node_modules/instascan/src/zxing",
"^aurelia-binding$": "<rootDir>/node_modules/aurelia-binding/dist/commonjs/aurelia-binding.js",
"^aurelia-validation$": "<rootDir>/node_modules/aurelia-validation/dist/commonjs/aurelia-validation",
"^aurelia-validation/(.*)$": "<rootDir>/node_modules/aurelia-validation/dist/commonjs/aurelia-validation/$1"
},
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{js,ts}",
"!**/*.spec.{js,ts}",
"!**/node_modules/**",
"!**/test/**"
],
"coverageDirectory": "<rootDir>/test/coverage-jest",
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
}
}