-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.7 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": "ngrv",
"version": "3.0.6",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]",
"author": "thilllon <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/thilllon/ngrv.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"ngrv": "dist/cli.js",
"ngrv-global": "dist/cli.global.js",
"ngrv:global": "dist/cli.global.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup",
"start": "node dist/index.js",
"test": "jest",
"test:cov": "jest --coverage",
"test:example": "pnpm build && cd ./example && pnpm install && pnpm test",
"prepare": "husky install && chmod +x .husky/*",
"format": "prettier --write --list-different .",
"prerelease": "pnpm format && pnpm lint && pnpm test && pnpm build",
"release": "release-it --only-version",
"lint": "eslint --fix ."
},
"dependencies": {
"commander": "^9.4.1"
},
"devDependencies": {
"@commitlint/cli": "^17.4.0",
"@commitlint/config-conventional": "^17.4.0",
"@jest/globals": "^29.4.3",
"@swc/core": "^1.3.36",
"@swc/jest": "^0.2.24",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"commitizen": "^4.2.6",
"commitlint": "^17.4.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.31.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"release-it": "^15.6.0",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"tsx": "^3.12.1",
"typescript": "^4.9.4"
}
}