-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "username-checker",
"version": "0.1.1",
"description": "Check the availability of a username across multiple websites",
"keywords": [
"username",
"checker",
"username checker",
"username availability",
"username availability checker",
"social media username checker",
"social media username availability",
"social media username availability checker",
"social media username availability validator",
"username validator"
],
"repository": {
"type": "git",
"url": "https://github.com/mastermunj/username-checker.git"
},
"license": "MIT",
"author": "Munjal Dhamecha",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc --noEmitOnError",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist coverage",
"commit": "git-cz",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"release": "standard-version",
"release:mock": "npm run release -- --dry-run",
"test": "jest --coverage --forceExit",
"test:watch": "npm run test -- --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@faker-js/faker": "^9.3.0",
"@swc/core": "^1.10.1",
"@swc/jest": "^0.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sort-package-json": "^2.12.0",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}