-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
executable file
·53 lines (53 loc) · 1.28 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
51
52
53
{
"name": "codice-fiscale-js",
"version": "2.3.22",
"description": "The Italian Tax Code Library for Javascript and Typescript",
"main": "dist/codice.fiscale.commonjs2.js",
"types": "types/codice-fiscale.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/lucavandro/CodiceFiscaleJS.git"
},
"directories": {
"test": "tests"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"jest": "^29.7.0",
"parallel-webpack": "^2.6.0",
"standard": "^12.0.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"build": "webpack && rename",
"clean": "rm ./example/codice.fiscale.var.js",
"test": "jest",
"fix": "standard --fix",
"standard": "standard",
"rename": "node utils.js",
"webpack": "webpack"
},
"author": "Luca Vandro <[email protected]>",
"contributors": [
"Walter Barbagallo <[email protected]>",
"Marco Pesani <[email protected]>",
"Arsenio Siani <[email protected]>"
],
"license": "CC BY SA",
"standard": {
"ignore": [
"dist/"
]
},
"jest": {
"moduleDirectories": [
"node_modules",
"./src"
]
}
}