forked from ucfopen/last-chance-cadet-materia-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.32 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
{
"name": "@ucfopen/last-chance-cadet",
"materia": {
"cleanName": "last-chance-cadet"
},
"version": "2.1.0",
"dependencies": {
"materia-widget-development-kit": "~3.0.2"
},
"devDependencies": {
"angular": "1.6.9",
"angular-mocks": "~1.5.0",
"jest": "^23.6.0",
"jest-coffee-preprocessor": "^1.0.0"
},
"scripts": {
"start": "mwdk-start",
"build": "mwdk-build-prod",
"build-dev": "mwdk-build-dev",
"test": "TZ='America/New_York' jest --verbose",
"test-ci": "TZ='America/New_York' CI=true jest --ci --useStderr --coverage --coverageReporters text-summary cobertura"
},
"jest": {
"coverageReporters": [
"text",
"lcov"
],
"verbose": false,
"transform": {
"^.+\\.coffee$": "<rootDir>/node_modules/jest-coffee-preprocessor/index.js"
},
"moduleFileExtensions": [
"coffee",
"js"
],
"collectCoverageFrom": [
"src/**/*.{js,coffee}"
],
"coverageThreshold": {
"global": {
"statements": 84,
"branches": 60,
"functions": 78,
"lines": 86
}
}
},
"license": "AGPL-3.0",
"description": "A matching game where students are provided two lists of terms, phrases, or audio to match. For use in Materia.",
"author": "University of Central Florida, Center for Distributed Learning"
}