-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.78 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
{
"name": "iterated",
"version": "0.2.3",
"description": "Functional methods (e.g. pipe, map, groupBy) to work with Javascript Iterables—with prime typing support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/bustawin/iterated#readme",
"bugs": {
"url": "https://github.com/bustawin/iterated/issues"
},
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc && tsc-alias",
"lint": "eslint 'src/**/*.{js,ts}'",
"lint:fix": "eslint 'src/**/*.{js,ts}' --fix",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"check-format": "prettier --check 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"test:type": "jest --config jest.config.tsd.js",
"doc:build": "npx typedoc src/__doc__.ts",
"doc:dev": "npx typedoc --watch src/__doc__.ts"
},
"keywords": [
"iterable",
"iterator",
"functional",
"pipe",
"typescript",
"typing"
],
"author": {
"name": "bustawin",
"url": "https://www.bustawin.com"
},
"license": "CC-BY-4.0",
"devDependencies": {
"@tsconfig/recommended": "^1.0.3",
"@tsd/typescript": "^5.2.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"jest-runner-tsd": "^6.0.0",
"ts-jest": "^29.1.1",
"tsc-alias": "^1.8.8",
"tsd-lite": "^0.8.0",
"typedoc": "^0.25.13",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testRegex": ".test.ts$",
"moduleNameMapper": {
"^@src$": "<rootDir>/src",
"^@src/(.*)$": "<rootDir>/src/$1"
}
}
}