forked from lucavandro/CodiceFiscaleJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.17 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
42
43
44
45
46
47
48
49
50
{
"name": "codice-fiscale-js",
"version": "2.2.4",
"description": "The Italian Tax Code Library for Javascript and Typescript",
"main": "dist/codice.fiscale.commonjs2.js",
"repository": {
"type": "git",
"url": "git://github.com/lucavandro/CodiceFiscaleJS.git"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"jest": "^24.8.0",
"parallel-webpack": "^2.4.0",
"standard": "^12.0.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.5"
},
"scripts": {
"build": "webpack",
"clean": "rm ./example/codice.fiscale.var.js",
"test": "jest",
"fix": "standard --fix",
"standard": "standard"
},
"author": "Luca Vandro <lucavandro@gmail.com>",
"contributors": [
"Walter Barbagallo <brb.walter@gmail.com>",
"Marco Pesani <marco.pesani@gmail.com>",
"Arsenio Siani <arsenio.siani@gmail.com>"
],
"license": "MIT",
"standard": {
"ignore": [
"dist/"
]
},
"jest": {
"moduleDirectories": [
"node_modules",
"./src"
]
}
}