-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.91 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
{
"name": "itertools",
"version": "2.3.2",
"description": "A JavaScript port of Python's awesome itertools standard library",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nvie/itertools.git"
},
"author": "Vincent Driessen",
"homepage": "https://github.com/nvie/itertools#readme",
"bugs": {
"url": "https://github.com/nvie/itertools/issues"
},
"type": "module",
"types": "./dist/index.d.cts",
"main": "./dist/index.cjs",
"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": "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",
"release": "npm run test && npm run lint && npm run build && npm run lint:package && release-it"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"keywords": [
"itertool",
"itertools",
"node-itertools"
],
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@release-it/keep-a-changelog": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"@vitest/coverage-istanbul": "^2.1.1",
"eslint": "^8.57.0",
"fast-check": "^3.22.0",
"prettier": "^3.3.3",
"publint": "^0.2.11",
"release-it": "^17.6.0",
"tsup": "^8.3.0",
"typescript": "^5.4.5",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.1"
},
"githubUrl": "https://github.com/nvie/itertools",
"sideEffects": false
}