-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 966 Bytes
/
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
{
"name": "pipefunc",
"version": "1.2.0",
"description": "A typescript library providing type-safe functional pipelines to chain multiple functions",
"main": "build/main.js",
"types": "build/main.d.ts",
"files": [
"build/**/*"
],
"scripts": {
"prepare": "npm run build",
"version": "npm run format && git add -A src",
"test": "jest",
"build": "tsc",
"format": "prettier --write 'src/**/*.{ts,js}'",
"postpublish": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thetos7/pipefunc.git"
},
"keywords": [
"Pipeline",
"Functional programming"
],
"author": "Thetos",
"license": "MIT",
"bugs": {
"url": "https://github.com/thetos7/pipefunc/issues"
},
"homepage": "https://github.com/thetos7/pipefunc#readme",
"devDependencies": {
"@types/jest": "^29.0.0",
"prettier": "^2.5.1",
"ts-jest": "^28.0.8",
"typescript": "^4.5.5"
}
}