forked from koblas/stdnum-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.81 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.81 KB
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
{
"name": "stdnum",
"version": "1.2.2",
"description": "Standard Number Validation",
"files": [
"lib"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"exports_NOT_YET": {
"./": {
"import": "./lib/esm/",
"require": "./lib/cjs/"
}
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"build": "tsc",
"prepublishOnly:esm": "tsc -p tsconfig.json",
"prepublishOnly:cjs": "tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run prepublishOnly:esm && npm run prepublishOnly:cjs"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"roots": [
"<rootDir>/src"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
]
},
"author": "David Koblas",
"keywords": [
"identity",
"company",
"person",
"vat",
"validation",
"validator"
],
"repository": {
"type": "git",
"url": "https://github.com/koblas/stdnum-js.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.6.3",
"prettier": "^2.2.0",
"ts-jest": "^26.4.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^4.1.2"
}
}