-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 995 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 995 Bytes
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
{
"name": "riceclassifier-frontend",
"version": "1.0.0",
"description": "Deep learning algorithm to classify grains of rice.",
"main": "src/frontend/riceclassifier/scripts/riceclassifier.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "jest --ci --coverage --watchAll=false"
},
"devDependencies": {
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/dom": "^9.3.3"
},
"jest": {
"testEnvironment": "jsdom",
"testMatch": [
"<rootDir>/tests/frontend/**/*.test.js"
],
"collectCoverageFrom": [
"src/frontend/**/*.js",
"!src/frontend/**/*.min.js"
],
"coverageDirectory": "coverage/frontend",
"coverageReporters": ["text", "lcov", "html"],
"moduleFileExtensions": ["js", "json"],
"transform": {},
"testTimeout": 10000
},
"keywords": [],
"author": "Yahia Nassab"
}