-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.04 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
{
"name": "fluent-piper",
"version": "3.1.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ts-delight/pipe.git"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"husky": "^9.0.11",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"description": "Type-safe left-to-right functional pipeline composition",
"bugs": {
"url": "https://github.com/ts-delight/pipe/issues"
},
"homepage": "https://github.com/ts-delight/pipe#readme",
"directories": {
"test": "test"
},
"author": "Lorefnon <[email protected]>"
}