This repository has been archived by the owner on Apr 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.5 KB
/
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
38
39
40
41
{
"name": "codice-fiscale-js",
"version": "1.1.4",
"description": "Javascript object for managing the italian tax code",
"main": "dist/CodiceFiscale.min.js",
"repository": {
"type": "git",
"url": "git+https://github.com/heavybeard/codice-fiscale.git"
},
"keywords": [
"codice fiscale",
"tax code",
"italian tax code"
],
"author": "heavybeard",
"contributors": [
{
"name": "zingus",
"url": "http://zingus.altervista.org/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/heavybeard/codice-fiscale/issues"
},
"homepage": "https://heavybeard.github.io/codice-fiscale/",
"devDependencies": {
"nodemon": "^2.0.3",
"uglify-js": "^2.4.21"
},
"scripts": {
"compress-js": "uglifyjs --mangle --preamble=\"/** CodiceFiscale - 1.1.4 (https://github.com/heavybeard/codice-fiscale) */\" source/CodiceFiscale.js source/CodiceFiscale.cadastralCodes.js > dist/CodiceFiscale.min.js",
"beautify-js": "uglifyjs --beautify --preamble=\"/** CodiceFiscale - 1.1.4 (https://github.com/heavybeard/codice-fiscale) */\" source/CodiceFiscale.js source/CodiceFiscale.cadastralCodes.js > dist/CodiceFiscale.js",
"watch-compress-js": "nodemon -e js --watch source -x \"npm run compress-js\"",
"clean": "rm dist/*.js",
"watch": "npm run watch-compress-js",
"version": "npm run build && git add -u .",
"build": "npm run clean && npm run compress-js && npm run beautify-js",
"test": "echo \"Error: no test specified\" && exit 1"
}
}