-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "streams",
"version": "2.0.0",
"description": "A lazy streams library for functional composition in JavaScript.",
"main": "index.js",
"type": "commonjs",
"files": [
"**/*.js",
"**/*.d.ts",
"!demos/**",
"!test/**"
],
"scripts": {
"build": "run-s format:check eslint clean tsc",
"clean": "del-cli '**/*.js' '**/*.d.ts' '!node_modules'",
"eslint": "eslint src",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "npm run eslint",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "run-s build test",
"test": "jest",
"tsc": "tsc",
"tscw": "tsc --watch --listEmittedFiles"
},
"repository": {
"type": "git",
"url": "https://github.com/nikolaybotev/streams.git"
},
"author": "Nikolay Botev",
"license": "MIT",
"bugs": {
"url": "https://github.com/nikolaybotev/streams/issues"
},
"homepage": "https://github.com/nikolaybotev/streams",
"peerDependencies": {
"typescript": ">=5.6.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/core-js": "^2.5.8",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"core-js": "^3.38.1",
"del-cli": "^5.1.0",
"eslint": "^9.10.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"typescript-eslint": "^8.5.0"
}
}