-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@ucfopen/normal-distribution-calculator",
"materia": {
"cleanName": "normal-distribution-calculator"
},
"dependencies": {
"materia-widget-development-kit": "^2.5.2"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
},
"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"
},
"jest": {
"collectCoverageFrom": [
"src/*"
],
"coverageReporters": [
"text-summary",
"lcov",
"cobertura"
],
"verbose": false,
"moduleFileExtensions": [
"js"
],
"coverageThreshold": {
"global": {
"statements": 11,
"branches": 11,
"functions": 35,
"lines": 10
}
}
},
"author": "University of Central Florida, Center for Distributed Learning",
"description": "Interactive graph widget showing normal distribution.",
"license": "AGPL-3.0",
"version": "1.0.3"
}