-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
123 lines (123 loc) · 2.7 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@ucfopen/nursing-simulation-builder",
"materia": {
"cleanName": "nursing-simulation-builder"
},
"version": "0.3.2",
"jest": {
"globals": {
"HS_ASSETS": {
"wall-1": {
"spanX": 1,
"category": "construction"
},
"chair-1": {
"spanX": 1,
"category": "equipment"
},
"window": {
"spanX": 1,
"category": "construction"
},
"bed-1": {
"spanX": 2,
"category": "equipment"
},
"test-item": {
"spanX": 1,
"category": "equipment",
"title": "temp-title"
}
},
"HS_CATEGORIES": [
"equipment",
"construction",
"people"
],
"HS_STICKER_TYPES": [
"0",
"fireSticker",
"soapSticker",
"tvSticker"
]
},
"coverageReporters": [
"text-summary",
"lcov"
],
"verbose": false,
"collectCoverageFrom": [
"src/**/*.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/custom_test_utilities/"
],
"coverageThreshold": {
"global": {
"branches": 60,
"functions": 55,
"lines": 65,
"statements": 65
}
}
},
"dependencies": {
"aframe": "0.5.0",
"aframe-click-drag-component": "ucfopen/aframe-click-drag-component#b13614ddbbbe2afddfd67edb23b96bfdeb1d19c9",
"aframe-mouse-cursor-component": "^0.5.2",
"aframe-react": "^4.2.3",
"react": "15.6.2",
"react-dom": "15.6.2",
"react-joyride": "^1.10.1",
"react-redux": "5.0.6",
"redux": "3.7.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-jest": "23.6.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"enzyme": "^2.9.1",
"husky": "1.1.4",
"jest": "23.6.0",
"jsdom": "^11.0.0",
"lint-staged": "^3.6.1",
"materia-widget-development-kit": "^2.3.0",
"prettier": "^1.4.4",
"react-test-renderer": "^15.6.1"
},
"scripts": {
"start": "webpack-dev-server",
"build-dev": "webpack",
"build": "webpack -p",
"test": "TZ='America/New_York' jest --verbose",
"test-ci": "TZ='America/New_York' CI=true jest --ci --useStderr --coverage --coverageReporters text-summary cobertura",
"pre-commit": "yarn test-ci && lint-staged"
},
"prettier": {
"useTabs": true,
"jsxBracketSameLine": true
},
"husky": {
"hooks": {
"pre-commit": "yarn pre-commit"
}
},
"lint-staged": {
"src/**/*.js": [
"prettier --write",
"git add"
],
"__tests__/**/*.js": [
"prettier --write",
"git add"
]
},
"license": "AGPL-3.0",
"description": "Design a 3D nursing simulation space by filling rooms with an inventory of items such as beds, IVs, Crash Carts, and seating. For use in Materia.",
"author": "University of Central Florida, Center for Distributed Learning"
}