-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.54 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
{
"name": "joinmodule",
"version": "1.3.7",
"description": "Autoload your script with Typescript support.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts",
"prepare": "husky",
"commitlint": "commitlint --edit",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JefteCosta/joinmodule.git"
},
"keywords": [
"autoload",
"typescript",
"npm-module",
"esnext",
"consign"
],
"author": "JefteCosta",
"license": "MIT",
"bugs": {
"url": "https://github.com/JefteCosta/joinmodule/issues"
},
"homepage": "https://github.com/JefteCosta/joinmodule#readme",
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@japa/api-client": "^2.0.0-1",
"@japa/assert": "^2.0.0-2",
"@japa/expect-type": "^2.0.0-1",
"@japa/runner": "^3.0.0-9",
"@swc/core": "^1.7.23",
"@types/node": "^22.5.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"peerDependencies": {
"@types/node": "^22.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true"
}
}
}