-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.61 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
77
78
79
80
81
82
{
"name": "company-id-validator",
"version": "0.0.0-development",
"description": "A Javascript library to validate company identifiers algorithms for many countries",
"main": "index.js",
"typings": "index.d.ts",
"author": "Michael Desigaud",
"bugs": {
"url": "https://github.com/RedFroggy/company-id-validator/issues"
},
"keywords": [
"business",
"company",
"identifier",
"international",
"validator",
"red froggy"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/RedFroggy/company-id-validator.git"
},
"scripts": {
"semantic-release": "semantic-release",
"build": "npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"release": "cp README.md dist/main && cp README.md dist/module && npm run semantic-release",
"test": "jest --config ./test/jest.config.js",
"test:ci": "jest --config ./test/jest.config.js --coverage && istanbul-badges-readme --coverageDir=\"./dist/test-results\" --exitCode=1 --ci",
"lint": "eslint src --ext .ts",
"watch:build": "tsc -p tsconfig.json -w",
"doc": "npm run doc:html",
"doc:html": "typedoc src/ --exclude **/*.spec.ts --out docs",
"doc:json": "typedoc src/ --exclude **/*.spec.ts --json docs/typedoc.json",
"doc:publish": "npm run doc:html && gh-pages -m \"[ci skip] Updates\" -d dist/docs",
"prepare": "is-ci || husky install"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"i18n-iso-countries": "7.7.0"
},
"devDependencies": {
"@commitlint/cli": "17.7.2",
"@commitlint/config-conventional": "17.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jasmine": "4.3.1",
"@types/jasminewd2": "2.0.10",
"@types/jest": "27.5.2",
"@types/node": "18.18.4",
"@typescript-eslint/eslint-plugin": "5.50.0",
"@typescript-eslint/parser": "5.50.0",
"eslint": "8.51.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-functional": "5.0.8",
"gh-pages": "5.0.0",
"glob": "8.1.0",
"husky": "8.0.3",
"is-ci": "3.0.1",
"istanbul-badges-readme": "1.8.5",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "7.0.0",
"jest": "27.5.1",
"jest-html-reporter": "3.10.2",
"load-json-file": "7.0.1",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"semantic-release": "20.1.3",
"ts-jest": "27.1.5",
"ts-node": "10.9.1",
"typedoc": "0.23.28",
"typescript": "4.9.5"
},
"prettier": {
"singleQuote": true
}
}