-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
58 lines (58 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
56
57
58
{
"name": "materia-template-widget",
"materia": {
"cleanName": "template-widget"
},
"dependencies": {
"@babel/core":"^7.14.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-env": "7.13.8",
"babel-loader":"^8.2.2",
"babel-jest": "26.6.3",
"angular": "1.6.9",
"angular-mocks": "1.6.9",
"jest": "^26.6.3",
"jest-coffee-preprocessor": "^1.0.0",
"materia-widget-development-kit": "2.5.1",
"ng-annotate-loader": "^0.6.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-test-renderer": "^16.5.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"
},
"jest": {
"coverageReporters": [
"text",
"lcov"
],
"verbose": false,
"transform": {
"^.+\\.jsx?$": "<rootDir>/node_modules/babel-jest",
"^.+\\.coffee$": "<rootDir>/node_modules/jest-coffee-preprocessor/index.js"
},
"moduleFileExtensions": [
"coffee",
"js"
],
"collectCoverageFrom": [
"src/**/*.{js,coffee}"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100
}
}
},
"author": "University of Central Florida, Center for Distributed Learning",
"description": "Template widget to use as an example.",
"license": "AGPL-3.0",
"version": "1.1.0"
}