-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.08 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.08 KB
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
{
"name": "printf-ts",
"version": "2.0.1",
"description": "printf for typescript",
"main": "lib/index.js",
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"eslint": "^8.45.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.6.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"files": [
"lib/**/*"
],
"lint-staged": {
"*.ts": [
"eslint . --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"test": "jest --coverage",
"build": "tsc"
},
"repository": "git+https://github.com/fienestar/sprintf-ts.git",
"author": "fienestar",
"license": "BSD-3-Clause",
"keywords": [
"printf",
"sprintf",
"format",
"printf-ts"
],
"bugs": {
"url": "https://github.com/fienestar/printf-ts/issues"
},
"homepage": "https://github.com/fienestar/printf-ts#readme"
}