-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 906 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
{
"name": "percentage-calculator-js",
"version": "1.0.0",
"description": "Zero-dependency percentage calculator: discount, increase, VAT extraction, reverse percentage, and more",
"main": "src/percentage-calculator.js",
"type": "module",
"scripts": {
"test": "node --test test/percentage-calculator.test.js"
},
"exports": {
".": "./src/percentage-calculator.js"
},
"files": [
"src"
],
"keywords": [
"percentage",
"percentage-calculator",
"discount",
"vat-calculator",
"zero-dependency"
],
"author": "Andrea Roversi <https://roversia.it/index-en.html>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/androve2k/percentage-calculator-js.git"
},
"homepage": "https://roversia.it/utility/calcolo-percentuale-en",
"bugs": {
"url": "https://github.com/androve2k/percentage-calculator-js/issues"
}
}