-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.85 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
{
"name": "third-party-capital",
"version": "3.0.0",
"description": "",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npx unbuild",
"prepack": "npm run build",
"prepare": "husky install",
"format:check": "prettier --check '**/*.{ts,js}'",
"lint:check": "eslint '**/*.{ts,js}'",
"test": "jest",
"release:major": "npm run build && npm version $(semver $npm_package_version -i major) && npm publish --tag latest && git push",
"release:minor": "npm run build && npm version $(semver $npm_package_version -i minor) && npm publish --tag latest && git push",
"release:patch": "npm run build && npm version $(semver $npm_package_version -i patch) && npm publish --tag latest && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/housseindjirdeh/third-party-capital.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/housseindjirdeh/third-party-capital/issues"
},
"homepage": "https://github.com/housseindjirdeh/third-party-capital#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.4",
"unbuild": "^2.0.0"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"semver": "^7.6.2"
}
}