-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.61 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
{
"author": {
"name": "Levan Basharuli [email protected]"
},
"license": "MIT",
"name": "readable-stream-clone",
"version": "1.0.0",
"description": "readable stream cloner",
"main": "lib/readable-stream-clone.js",
"keywords": [
"readable",
"stream",
"clone",
"writable",
"typescript",
"types"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"format": "prettier --write \"{src/**/*.ts,jest.config.js}\"",
"prepare": "simple-git-hooks",
"pre:commit": "lint-staged",
"test": "npm run test:format && npm run test:specs",
"test:format": "prettier --check \"{src/**/*.ts,jest.config.js}\"",
"test:specs": "jest"
},
"lint-staged": {
"{src/**/*.ts,jest.config.js}": [
"prettier --write"
]
},
"simple-git-hooks": {
"pre-commit": "npm run pre:commit"
},
"maintainers": [
{
"name": "levansuper",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "[email protected]:levansuper/readable-stream-clone.git"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/node": "20.11.17",
"fs-extra": "^11.2.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.9.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}