-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.9 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
{
"name": "iterified",
"version": "1.2.5",
"author": "Dor Shtaif <dorshtaif@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/shtaif/iterified",
"repository": {
"type": "git",
"url": "https://github.com/shtaif/iterified"
},
"description": "Convert any callback-based sequence of values into a full-fledged async iterable",
"engineStrict": true,
"sideEffects": false,
"keywords": [
"callbacks-promises-async-await",
"iterable",
"iterator",
"async-generator",
"async-iterable",
"async-iterator",
"async-iterable-utility",
"promise",
"for-await-of",
"async-channels",
"async-await",
"callbacks",
"lazy",
"disposable",
"typescript",
"esm"
],
"type": "commonjs",
"engines": {
"node": ">=10.21.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"test": "ts-mocha -p ./spec/tsconfig-tests.json",
"build": "rimraf ./dist && tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && ts-node -p tsconfig.json ./scripts/set-module-type-in-dist-builds.ts",
"check-typings": "tsc --noEmit -p ./tsconfig.json",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^20.4.5",
"@types/sinon": "^10.0.16",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-config-standard": "^17.1.0",
"expect": "^29.6.2",
"mocha": "^10.4.0",
"prettier": "^3.0.2",
"rimraf": "^5.0.1",
"sinon": "^15.2.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}