-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 874 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
39
40
{
"name": "klubok",
"version": "0.1.1",
"description": "Do notation pipes for Promise-based or pure functions which easy to mock",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:darky/klubok.git"
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "node --experimental-strip-types --test ./test.ts",
"test:types": "cp index.test-d.ts ./dist/ && npx tsd",
"prepublishOnly": "npm run build"
},
"keywords": [
"functional",
"programming",
"fp",
"pipe",
"do",
"notation",
"mock",
"unit",
"test",
"promise"
],
"author": "Vladislav Botvin",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.9.3",
"tsd": "^0.31.2",
"typescript": "^5.7.2"
}
}