forked from se-panfilov/jsvat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "jsvat",
"version": "2.5.3",
"description": "Check the validity of the format of an EU VAT number",
"main": "./lib/commonjs/index.js",
"module": "./lib/es6/index.js",
"jsnext:main": "./lib/es6/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "rimraf lib && yarn build:commonjs && yarn build:es6 && yarn build:amd && yarn build:umd && yarn build:system",
"build:commonjs": "yarn ts --outDir lib/commonjs --module CommonJS --target ES5",
"build:es6": "yarn ts --outDir lib/es6 --module ES6",
"build:amd": "yarn ts --outDir lib/amd --module AMD",
"build:umd": "yarn ts --outDir lib/umd --module UMD",
"build:system": "yarn ts --outDir lib/system --module System",
"prettier": "prettier --write 'src/**/*.ts'",
"prettier:check": "prettier --check 'src/**/*.ts'",
"ts": "tsc -p tsconfig.json",
"test": "./node_modules/.bin/jest",
"lint": "tslint --project ."
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/se-panfilov/jsvat.git"
},
"bugs": {
"url": "https://github.com/se-panfilov/jsvat/issues"
},
"homepage": "https://se-panfilov.github.io/jsvat/",
"keywords": [
"jsvat",
"EU",
"vat",
"VAT",
"VATIN",
"european",
"euro",
"value",
"added",
"check",
"syntax",
"validator",
"VAT Code validator",
"validator",
"finance",
"tax"
],
"ignore": {},
"author": "S.Panfilov <[email protected]> (https://se-panfilov.github.io)",
"contributors": [
"Wilgert Velinga <[email protected]> (http://wilgert.nl)"
],
"private": false,
"dependencies": {},
"devDependencies": {
"@babel/preset-env": "7.13.15",
"babel": "6.23.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
"husky": "4.3.8",
"jest": "26.6.3",
"prettier": "2.2.1",
"pretty-quick": "3.1.0",
"rimraf": "3.0.2",
"ts-loader": "8.1.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "6.0.1",
"typescript": "4.2.4"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}