forked from ucfopen/crossword-materia-widget
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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/crossword",
"materia": {
"cleanName": "crossword"
},
"version": "1.3.0",
"dependencies": {
"hammerjs": "2.0.6",
"materia-widget-development-kit": "2.4.2"
},
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p",
"build-dev": "webpack",
"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.6.9",
"angular-mocks": "1.6.9",
"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": 15
}
}
},
"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"
}