-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.04 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
83
84
85
{
"name": "@demirjs/tckimlikno",
"version": "1.0.6",
"description": "Turkish Identification Number Verification & Validation Package for Nodejs.",
"main": "build/main/index.js",
"typings": "build/main/index.d.ts",
"repository": "https://github.com/hsndmr/tckimlikno",
"license": "MIT",
"keywords": [],
"scripts": {
"build": "rimraf -rf build && tsc -p tsconfig.json",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint 'src/**/*.ts' --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "jest --runInBand",
"prerelease": "npm run build",
"release": "release-it"
},
"engines": {
"node": ">=10"
},
"peerDependencies": {
"axios": "^1.1.3"
},
"devDependencies": {
"@types/jest": "29.2.5",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^5.0.4",
"eslint-plugin-import": "2.26.0",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"prettier": "2.8.1",
"reflect-metadata": "0.1.13",
"release-it": "15.6.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.3",
"typescript": "4.7.4"
},
"files": [
"build/main",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.ts": [
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}