-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "@reeywhaar/iterator",
"version": "0.7.0",
"description": "",
"scripts": {
"tscheck": "tsc --noEmit",
"test": "jest",
"build:cjs": "tsc",
"build:mjs": "tsc --build tsconfig.es.json",
"build": "npm run build:cjs && npm run build:mjs",
"docs": "typedoc --excludeExternals --out ./docs/ src/iterator.ts",
"lint": "prettier src --write"
},
"exports": {
"import": "./dist/mjs/iterator.js",
"require": "./dist/cjs/iterator.js"
},
"keywords": [],
"author": "Mikhail Vyrtsev",
"homepage": "https://github.com/Reeywhaar/iterator",
"bugs": {
"url": "https://github.com/Reeywhaar/iterator/issues",
"email": "reeywhaar@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Reeywhaar/iterator.git"
},
"types": "./dist/mjs/iterator.d.ts",
"files": [
"/dist"
],
"license": "BSD-3-Clause",
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"jsdoc-to-markdown": "^8.0.0",
"prettier": "^3.0.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}