-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.55 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
{
"name": "@ucfopen/sort-it-out",
"materia": {
"cleanName": "sort-it-out"
},
"version": "1.0.9",
"scripts": {
"start": "mwdk-start",
"build": "mwdk-build-prod",
"build-dev": "mwdk-build-dev",
"prettier-write": "prettier --write ./src/**/*.js",
"prettier-check": "prettier -c ./src/**/*.js",
"test": "TZ='America/New_York' jest --verbose",
"test-ci": "TZ='America/New_York' CI=true jest --ci --useStderr --coverage"
},
"jest": {
"coverageReporters": [
"text-summary",
"lcov",
"cobertura"
],
"verbose": false,
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"src/*.js",
"src/directives/*",
"src/controllers/*"
],
"coverageThreshold": {
"global": {
"statements": 62,
"branches": 52,
"functions": 63,
"lines": 62
}
}
},
"dependencies": {
"angular-hammer": "^2.2.0",
"hammerjs": "^2.0.8",
"materia-widget-development-kit": "^3.0.2"
},
"devDependencies": {
"angular": "~1.8.3",
"angular-animate": "~1.8.3",
"angular-aria": "~1.8.3",
"angular-loader": "~1.8.3",
"angular-material": "~1.1.10",
"angular-messages": "~1.8.3",
"angular-mocks": "~1.8.3",
"angular-sanitize": "~1.8.3",
"core-js": "^2.5.0",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"license": "AGPL-3.0",
"description": "Students must sort items on a messy computer desktop into their appropriate folders.",
"author": "University of Central Florida, Center for Distributed Learning"
}