-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 867 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
{
"name": "javascript-calculator",
"jest": {
"verbose": true
},
"version": "1.0.0",
"description": "From zero to FullStack - an unofficial course led by [Pedro Soares](https://github.com/pncsoares) with the aim of guiding and helping two friends to learn programming and become software developers.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/from-zero-to-fullstack/javascript-calculator.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/from-zero-to-fullstack/javascript-calculator/issues"
},
"homepage": "https://github.com/from-zero-to-fullstack/javascript-calculator#readme",
"dependencies": {
"readline": "^1.3.0"
},
"devDependencies": {
"jest": "^27.5.1"
}
}