-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"packageManager": "[email protected]",
"name": "template",
"version": "1.0.0",
"description": "Replace this!",
"main": "build/index.js",
"typings": "build/types/index.d.ts",
"author": "Artie Fuzzz",
"license": "MIT",
"scripts": {
"lint": "eslint --cache --report-unused-disable-directives --ignore-path .gitignore --ext .ts src/",
"lint:fix": "eslint --cache --report-unused-disable-directives --ext .ts src/ --fix",
"build": "tsc -p src",
"test": "ava",
"postinstall": "husky install .github/.husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"commit": "git-cz"
},
"devDependencies": {
"@artiefuzzz/eslint-config": "1.3.1",
"@artiefuzzz/ts": "1.3.2",
"@ava/typescript": "5.0.0",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@commitlint/cz-commitlint": "19.6.1",
"@types/node": "22.10.2",
"ava": "6.2.0",
"commitizen": "4.3.1",
"eslint": "9.17.0",
"husky": "9.1.7",
"inquirer": "12.2.0",
"lint-staged": "15.2.11",
"pinst": "3.0.0",
"ts-node": "10.9.2",
"typescript": "4.9.5"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"./src/**/*.ts": "yarn lint:fix"
}
}