-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.52 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "fluent-streams",
"version": "0.9.2",
"description": "Fluent API for JavaScript iterables processing",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"sideEffects": false,
"scripts": {
"clear": "npm-run-all clear@dist clear@jest",
"clear@dist": "rm -rf dist",
"clear@jest": "jest --clearCache",
"test": "jest",
"cover": "jest --collect-coverage",
"compile": "npm-run-all compile@esm compile@cjs",
"compile@esm": "tsc --project tsconfig.build.esm.json && mv dist/index.js dist/index.mjs",
"compile@cjs": "tsc --project tsconfig.build.cjs.json",
"testBuild": "npm-run-all testBuild@esm testBuild@cjs",
"testBuild@esm": "node testBuild.mjs",
"testBuild@cjs": "node testBuild.cjs",
"min": "npm-run-all compile min@test",
"min@test": "node testMin.mjs",
"build": "npm-run-all clear test compile testBuild min"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aleksei-berezkin/fluent-streams.git"
},
"keywords": [
"stream",
"iterable",
"JavaScript",
"TypeScript"
],
"author": "Aleksei Berezkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/aleksei-berezkin/fluent-streams/issues"
},
"homepage": "https://github.com/aleksei-berezkin/fluent-streams#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"terser": "^5.37.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}