-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
56 lines (56 loc) · 1.48 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
{
"name": "@ucfopen/equation-sandbox",
"materia": {
"cleanName": "equation-sandbox"
},
"version": "2.0.3",
"dependencies": {
"angular": "~1.6.0",
"jest": "^24.8.0",
"jsxgraph": "^0.99.7",
"materia-widget-development-kit": "^2.5.0",
"mathquill": "0.9.1",
"onchange": "^4.0.0",
"pegjs": "^0.8.0",
"webpack-synchronizable-shell-plugin": "^0.0.7"
},
"resolutions": {
"jest/**/tough-cookie": "2.3.4"
},
"devDependencies": {
"sass-graph": "^2.1.1"
},
"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",
"peg:build": "pegjs --cache ./src/peg/latex.pegjs ./src/js/latex-parser.js",
"peg:watch": "onchange './src/peg/latex.pegjs' -- yarn peg:build"
},
"jest": {
"coverageReporters": [
"text",
"lcov"
],
"verbose": false,
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"statements": 0,
"branches": 0,
"functions": 0,
"lines": 0
}
}
},
"author": "University of Central Florida, Center for Distributed Learning",
"description": "Template widget to use as an example.",
"license": "AGPL-3.0"
}