-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.68 KB
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
62
63
64
65
66
{
"name": "ppipe",
"version": "3.2.0",
"description": "Strictly-typed piping without the operator support",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"build:test": "tsc -p tsconfig.test.json",
"clean": "rm -rf dist dist-test",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"typecheck:arity": "tsc test/types.test.ts --noEmit --strict --module esnext --moduleResolution node",
"test": "npm run build:test && c8 --include='dist-test/src/**/*.js' --reporter=text --reporter=html mocha dist-test/test/test.js",
"coverage": "c8 check-coverage --include='dist-test/src/**/*.js' --lines 100 --functions 100 --branches 100 --statements 100",
"lint": "eslint --fix src/ test/",
"lint:check": "eslint src/ test/",
"prepare": "husky"
},
"keywords": [
"piping",
"promise",
"chain",
"async",
"pipe",
"pipe-operator",
"pipes-values",
"typescript",
"type-safe"
],
"repository": {
"type": "git",
"url": "https://github.com/egeozcan/ppipe.git"
},
"author": "Yavuz Ege Özcan",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/chai": "^5.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"c8": "^10.1.3",
"chai": "^5.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"mocha": "^11.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.53.1"
}
}