CodiceFiscaleJS/package.json

54 lines
1.4 KiB
JSON
Raw Normal View History

2016-03-22 20:23:28 +01:00
{
"name": "codice-fiscale-js",
2018-10-04 22:22:01 +02:00
"version": "2.0.1",
2018-09-03 14:59:53 +02:00
"description": "CodiceFiscale.js is a utility library to compute and validate Italian Tax code (codice fiscale).",
"main": "dist/codice.fiscale.umd.js",
2018-09-03 14:59:53 +02:00
"types": "types/main.d.ts",
2017-09-05 22:56:22 +02:00
"repository": {
"type": "git",
2018-10-04 22:22:01 +02:00
"url": "git://github.com/lucavandro/CodiceFiscaleJS.git"
2017-09-05 22:56:22 +02:00
},
2016-03-22 20:23:28 +01:00
"directories": {
2018-09-03 14:59:53 +02:00
"test": "test"
2016-03-22 20:23:28 +01:00
},
2018-09-03 14:59:53 +02:00
"engines": {
"node": ">= 8.9.0"
2017-12-19 11:56:42 +01:00
},
2016-03-22 20:23:28 +01:00
"devDependencies": {
2018-09-03 14:59:53 +02:00
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@types/jasmine": "^2.8.8",
2018-09-03 17:16:53 +02:00
"@types/node": "^8.10.29",
"babel-loader": "^8.0.2",
2018-09-03 14:59:53 +02:00
"babel-preset-minify": "^0.4.3",
"jasmine": "^3.2.0",
"parallel-webpack": "^2.3.0",
"rimraf": "~2.6.2",
"ts-loader": "^4.5.0",
"ts-node": "^7.0.1",
"tslint": "~5.11.0",
"tslint-microsoft-contrib": "~5.1.0",
"tsutils": "~3.0.0",
"typescript": "^3.0.3",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0"
2016-03-22 20:23:28 +01:00
},
"scripts": {
2018-09-03 14:59:53 +02:00
"clean": "rimraf build types dist",
"build": "npm run clean && tsc -p tsconfig.json && webpack",
"lint": "tslint -t stylish --project \"tsconfig.json\"",
"test": "jasmine JASMINE_CONFIG_PATH=jasmine.json"
2017-12-19 09:50:04 +01:00
},
2017-09-05 22:56:22 +02:00
"author": "Luca Vandro <lucavandro@gmail.com>",
2017-03-10 12:22:43 +01:00
"contributors": [
2017-12-18 21:53:20 +01:00
"Walter Barbagallo <brb.walter@gmail.com>",
"Marco Pesani <marco.pesani@gmail.com>"
2017-03-10 12:22:43 +01:00
],
"license": "MIT",
"standard": {
"ignore": [
"dist/"
]
}
2017-12-18 21:32:16 +01:00
}