-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "@ucfopen/enigma",
"materia": {
"cleanName": "enigma"
},
"version": "2.3.0",
"dependencies": {
"materia-widget-development-kit": "^3.0.1"
},
"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",
"test-dev": "TZ='America/New_York' jest --verbose --watchAll --coverage --coverageReporters lcov"
},
"jest": {
"coverageReporters": [
"text-summary",
"lcov"
],
"verbose": true,
"collectCoverageFrom": [
"src/**/*.coffee"
],
"transform": {
"^.+\\.coffee$": "jest-coffee-preprocessor"
},
"coverageThreshold": {
"global": {
"statements": 96,
"branches": 71,
"functions": 83,
"lines": 96
}
}
},
"devDependencies": {
"angular": "1.8.0",
"angular-aria": "^1.8.2",
"angular-mocks": "1.6.9",
"jest": "^23.6.0",
"jest-coffee-preprocessor": "^1.0.0"
},
"license": "AGPL-3.0",
"description": "Enigma is a Jeopardy-like study and quiz widget for use in Materia.",
"author": "University of Central Florida, Center for Distributed Learning"
}