-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 916 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
{
"name": "exclude-vat-calculator",
"version": "1.0.0",
"description": "VAT Calculator, Exclude VAT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"copy": "copyfiles -u 1 -e ./src/js/calculator.js ./src/**/* ./src/* build",
"build": "NODE_ENV=production npx tailwindcss -i ./src/css/tailwind.css -o ./src/css/style.css --minify && npx uglifyjs ./src/js/calculator.js -o ./src/js/calc.min.js --source-map && npm run copy && workbox injectManifest workbox-config.js"
},
"author": "KRAFTBIT",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kraftbit/exclude-vat-calculator.git"
},
"homepage": "https://excludevat.com",
"keywords": [
"vat",
"calculator",
"exclude"
],
"devDependencies": {
"copyfiles": "^1.2.0",
"tailwindcss": "^2.2.7",
"uglify-js": "^3.14.1",
"workbox-cli": "^3.5.0"
}
}