-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.28 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.28 KB
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/crossword",
"materia": {
"cleanName": "crossword"
},
"version": "1.3.6",
"dependencies": {
"hammerjs": "2.0.6",
"materia-widget-development-kit": "3.0.4"
},
"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"
},
"devDependencies": {
"angular": "1.8.3",
"angular-mocks": "1.8.3",
"jest": "^23.6.0",
"jest-coffee-preprocessor": "^1.0.0",
"jquery-1x": "^1.12.1"
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.coffee$": "<rootDir>/node_modules/jest-coffee-preprocessor/index.js"
},
"moduleFileExtensions": [
"coffee",
"js"
],
"collectCoverageFrom": [
"src/**/*.{js,coffee}"
],
"coverageThreshold": {
"global": {
"statements": 5,
"branches": 1,
"functions": 3,
"lines": 11
}
}
},
"license": "AGPL-3.0",
"description": "Crossword is a quiz tool that uses words and clues to randomly generate a crossword puzzle.",
"author": "University of Central Florida, Center for Distributed Learning"
}