-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
73 lines (73 loc) · 2.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
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": "itertools",
"version": "2.4.0",
"description": "A JavaScript port of Python's awesome itertools standard library",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"module": "./dist/index.js",
"default": "./dist/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"format": "eslint --fix src/ test/ && prettier --write src/ test/",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --report-unused-disable-directives src/ test/",
"lint:prettier": "prettier --list-different src/ test/",
"lint:package": "publint --strict && attw --pack",
"test": "vitest run --coverage",
"test:types": "npm run build && tsd --typings ./dist/index.d.ts",
"release": "npm run test && npm run lint && npm run build && npm run lint:package && release-it"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.17.3",
"@eslint/js": "^9.20.0",
"@release-it/keep-a-changelog": "^6.0.0",
"@vitest/coverage-istanbul": "^3.0.6",
"eslint": "^9.20.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fast-check": "^3.23.2",
"prettier": "^3.5.1",
"publint": "^0.3.6",
"release-it": "^18.1.2",
"tsd": "^0.31.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.1",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6"
},
"author": "Vincent Driessen",
"repository": {
"type": "git",
"url": "git+https://github.com/nvie/itertools.git"
},
"homepage": "https://github.com/nvie/itertools#readme",
"bugs": {
"url": "https://github.com/nvie/itertools/issues"
},
"keywords": [
"itertool",
"itertools",
"node-itertools"
],
"githubUrl": "https://github.com/nvie/itertools",
"sideEffects": false
}