-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.27 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
{
"name": "household_chores_schedule",
"version": "1.0.0",
"description": "<p>Small algorithm that generates household chores schedules for your family.\r Currently, we are only able to create one schedule and to print it.\r Next step will be to create a simple interface. It will simplify the usability of the algorithm and give the possibility to save your schedule</p>",
"main": "webpack.config.js",
"directories": {
"test": "tests",
"build": "webpack"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"css-loader": "^6.7.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"style-loader": "^3.3.1",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"typescript": "^4.6.4",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"scripts": {
"test": "jest",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CANEVETGASPARD/Household_Chores_Schedule.git"
},
"keywords": [],
"author": "Gaspard Canevet",
"license": "ISC",
"bugs": {
"url": "https://github.com/CANEVETGASPARD/Household_Chores_Schedule/issues"
},
"homepage": "https://github.com/CANEVETGASPARD/Household_Chores_Schedule#readme",
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest"
}
}