This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@proc7ts/push-iterator",
"version": "3.1.2",
"description": "Push iteration protocol",
"keywords": [
"iteration",
"iterator",
"push-iteration",
"push-iterator"
],
"homepage": "https://github.com/proc7ts/push-iterator",
"repository": {
"type": "git",
"url": "ssh://git@github.com:proc7ts/push-iterator.git"
},
"license": "MIT",
"author": "Ruslan Lopatin <ruslan.lopatin@gmail.com>",
"bugs": {
"url": "https://github.com/proc7ts/push-iterator/issues"
},
"type": "module",
"types": "./dist/push-iterator.d.ts",
"typesVersions": {
"*": {
"call-thru": [
"./dist/push-iterator.call-thru.d.ts"
]
}
},
"exports": {
".": {
"types": "./dist/push-iterator.d.ts",
"default": "./dist/push-iterator.js"
},
"./call-thru": {
"type": "./dist/push-iterator.call-thru.d.ts",
"default": "./dist/push-iterator.call-thru.js"
}
},
"sideEffects": false,
"peerDependencies": {
"@proc7ts/call-thru": "^4.4.1"
},
"peerDependenciesMeta": {
"@proc7ts/call-thru": {
"optional": true
}
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"@proc7ts/call-thru": "^4.4.1",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@run-z/eslint-config": "^3.3.1",
"@run-z/prettier-config": "^2.0.0",
"@run-z/project-config": "^0.19.0",
"@swc/core": "^1.3.60",
"@swc/jest": "^0.2.26",
"@types/benchmark": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"benchmark": "^2.1.4",
"chalk": "^5.2.0",
"eslint": "^8.41.0",
"eslint-plugin-jest": "^27.2.1",
"gh-pages": "^5.0.0",
"jest": "^29.5.0",
"jest-junit": "^16.0.0",
"prettier": "^2.8.8",
"prettier-eslint-cli": "^7.1.0",
"rollup": "^3.23.0",
"rollup-plugin-unbundle": "^3.1.0",
"run-z": "1.11.0-bootstrap",
"ts-jest": "^29.1.0",
"tslib": "2.5.0",
"typedoc": "^0.24.7",
"typescript": "~5.0.4"
},
"scripts": {
"all": "run-z build,lint,test",
"benchmark": "run-z benchmark:build --then node --no-warnings --enable-source-maps ./target/benchmark.js",
"benchmark:build": "run-z --then rollup --config rollup.benchmark.config.js",
"benchmark:record": "run-z benchmark:build benchmark:record:node18 benchmark:record:node16 benchmark:record:node14",
"benchmark:record:node14": "LANG=C FORCE_COLOR=0 pnpm --package node@14 dlx node ./target/benchmark.js > ./benchmarks/node14.txt",
"benchmark:record:node16": "LANG=C FORCE_COLOR=0 pnpm --package node@16 dlx node ./target/benchmark.js > ./benchmarks/node16.txt",
"benchmark:record:node18": "LANG=C FORCE_COLOR=0 pnpm --package node@18 dlx node ./target/benchmark.js > ./benchmarks/node18.txt",
"bootstrap": "build-z",
"build": "run-z +z bootstrap",
"ci:all": "run-z all +test/--ci/--runInBand",
"clean": "run-z +z --then clean-z",
"doc": "run-z +z --then typedoc",
"doc:publish": "run-z doc --then gh-pages --dist target/typedoc --dotfiles",
"format": "run-z +z --then prettier-eslint --write --include-dot-files \"src/**/*.*\" \"*.{js,cjs,json,md}\"",
"lint": "run-z +z --then eslint .",
"test": "run-z +z env:NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" --then test-z",
"z": "run-z +cmd:rollup,+cmd,+cmd:typedoc,+cmd:eslint,+cmd:jest"
}
}