-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 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
{
"name": "sample",
"version": "1.0.0",
"main": "./dist-cjs/index.js",
"license": "Apache License 2.0",
"private": true,
"dependencies": {
"@husky-hook-creator/core": "file:.yalc/@husky-hook-creator/core",
"execa": "5.1.1"
},
"scripts": {
"build:types": "tsc -p tsconfig.types.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.es.json",
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"clean": "rimraf ./dist-* *.tsbuildinfo .husky",
"clean:all": "rimraf ./dist-* && rimraf *.tsbuildinfo && rimraf node_modules",
"create-hooks": "ts-node script/src/husky-runner.ts",
"create-hooks-with-custom-executor": "ts-node script/src/husky-custom-runner"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/thiagoolsilva/husky-starter.git"
},
"bugs": {
"url": "/~https://github.com/thiagoolsilva/husky-starter/issues"
},
"homepage": "/~https://github.com/thiagoolsilva/husky-starter#readme",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@tsconfig/node14": "1.0.3",
"@types/node": "18.11.15",
"concurrently": "7.2.0",
"husky": "7.0.2",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"ts-node": "10.3.0",
"typescript": "4.4.3"
}
}