-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "@drew887121/iteratorfuncs",
"version": "0.1.0",
"description": "A small package to make working with iterators easier",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"docs": "typedoc",
"test": "npm run build && find ./ -name '*.spec.ts' -print0 | xargs -n 1 -0 node --loader tsx --test",
"test:coverage": "npm run build && find ./ -name '*.spec.ts' -print0 | xargs -n 1 -0 node --experimental-test-coverage --loader tsx --test",
"lint": "prettier . --write",
"lint:check": "prettier . --check",
"prepare": "husky install"
},
"author": "[email protected]",
"license": "MPL-2.0",
"devDependencies": {
"@types/node": "^20.8.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.3",
"tsx": "^3.13.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/drew887/iteratorFuncs.git"
},
"keywords": [
"iterators",
"iterator",
"Iterable",
"IterableIterator",
"map",
"reduce",
"filter"
],
"bugs": {
"url": "https://github.com/drew887/iteratorFuncs/issues"
},
"homepage": "https://github.com/drew887/iteratorFuncs#readme"
}