-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
55 lines (55 loc) · 1.53 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
{
"name": "@ucfopen/this-or-that",
"materia": {
"cleanName": "this-or-that"
},
"version": "1.2.0",
"dependencies": {
"hammerjs": "1.0.5",
"materia-widget-development-kit": "^3.0.1"
},
"devDependencies": {
"angular": "~1.8.3",
"angular-animate": "~1.7.9",
"angular-aria": "1.8.2",
"angular-mocks": "~1.7.9",
"angular-sanitize": "~1.7.9",
"core-js": "^2.5.0",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"scripts": {
"start": "mwdk-start",
"build": "mwdk-build-prod",
"build-dev": "mwdk-build-dev",
"prettier-write": "prettier --write '{src,src/{directives,controllers,services}}/*.{js,scss}'",
"prettier-check": "prettier -c '{src,src/{directives,controllers,services}}/*.{js,scss}'",
"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,
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"src/*.js",
"src/{directives,controllers,services}/*.js"
],
"coverageThreshold": {
"global": {
"statements": 95,
"branches": 92,
"lines": 95,
"functions": 95
}
}
},
"author": "University of Central Florida, Center for Distributed Learning",
"description": "This or That is a game in which students must answer questions by choosing one of two images.",
"license": "AGPL-3.0"
}