-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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": "app-version-checker",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "git@github.com:mohammedhammoud/app-version-checker.git"
},
"private": false,
"main": "dist/index.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.build.json",
"clean": "rimraf dist",
"dev": "yarn clean && tsc -w",
"lint": "eslint . --config .eslintrc --cache --ext .ts,.js",
"lint:ci": "yarn lint --quiet",
"lint:fix": "yarn lint --fix",
"test": "TS_JEST_DISABLE_VER_CHECKER=true jest",
"test:ci": "yarn test --ci",
"test:watch": "yarn test --watch -u",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn typecheck && yarn test"
}
},
"lint-staged": {
"*.{js,ts,json,md}": [
"yarn lint:fix"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
]
},
"license": "MIT",
"dependencies": {
"compare-versions": "^6.0.0-rc.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.5.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.3.0",
"husky": "^8.0.3",
"import-sort-cli": "^6.0.0",
"import-sort-style-eslint-typescript-hero": "^1.1.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"semantic-release": "^21.0.1",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
}
}