-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 957 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": "pipeline-maker",
"version": "2.1.1",
"description": "A library to create pipelines with small and smart classes.",
"main": "lib/index.js",
"typings": "types/index.d.ts",
"private": false,
"scripts": {
"build": "tsc -p ./",
"dev": "tsc -p ./ -w",
"test": "mocha -r ts-node/register ./tests/**.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliver021/func-pipe.git"
},
"keywords": [
"javascript",
"typescript",
"functional",
"pipe",
"function",
"helper"
],
"author": "Oliver Valiente",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliver021/func-pipe/issues"
},
"homepage": "https://github.com/oliver021/func-pipe#readme",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"chai": "^4.3.0",
"mocha": "^10.0.0",
"ts-node": "^10.8.0",
"tslint": "^6.1.3",
"typescript": "^4.1.5"
}
}