-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 971 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
{
"name": "calculator",
"version": "1.0.0",
"description": "Web calculator build with HTML, Grid CSS, Vanilla JS",
"scripts": {
"build": "node ./scripts/build.js",
"dev": "servor src index.html 1234 --browser --reload",
"test": "jest",
"test-debug": "node --inspect-brk node_modules/.bin/jest --runInBand --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/giodelabarrera/js-calculator.git"
},
"author": "Giorgio de la Barrera<[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/giodelabarrera/js-calculator/issues"
},
"homepage": "https://github.com/giodelabarrera/js-calculator#readme",
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@testing-library/dom": "^7.30.0",
"@testing-library/jest-dom": "^5.11.9",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"servor": "^4.0.2"
}
}