-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
37 lines (37 loc) · 879 Bytes
/
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
{
"name": "hacktober-calc",
"version": "1.0.0",
"description": "A simple calculator using HTML, CSS and Javascript for Hacktoberfest!",
"main": "index.html",
"scripts": {
"dev": "npx http-server",
"test": "jest --watchAll"
},
"repository": {
"type": "git",
"url": "https://github.com/l4ur4oliveira/hacktober-calc.git"
},
"keywords": [
"hacktoberfest",
"html",
"css",
"javascript"
],
"author": "Laura de Oliveira",
"license": "ISC",
"bugs": {
"url": "https://github.com/l4ur4oliveira/hacktober-calc/issues"
},
"homepage": "https://github.com/l4ur4oliveira/hacktober-calc#readme",
"devDependencies": {
"@babel/preset-env": "^7.24.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"jest": {
"testEnvironment": "jsdom",
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}