-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
1,568 additions
and
1,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
{ | ||
"name": "itertools", | ||
"version": "2.1.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" | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/index.js", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/index.d.mts", | ||
"default": "./dist/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.ts", | ||
"module": "./dist/index.mjs", | ||
"default": "./dist/index.js" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"actually-prepublish": "echo \"\\n\\nPlease run \\`bin/publish.sh <options>\\` instead.\\n\\n\" && exit 2", | ||
"build": "tsup", | ||
"clean": "rimraf dist", | ||
"format": "prettier --write src/", | ||
"lint": "npm run lint:eslint && npm run lint:prettier", | ||
"lint:eslint": "eslint --report-unused-disable-directives src/", | ||
"lint:prettier": "prettier --list-different src/", | ||
"lint:package": "publint --strict && attw --pack", | ||
"prepublish": "in-publish && npm run actually-prepublish || not-in-publish", | ||
"test": "vitest run --coverage" | ||
}, | ||
"files": [ | ||
"dist/", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"keywords": [ | ||
"itertool", | ||
"itertools", | ||
"node-itertools" | ||
], | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.13.5", | ||
"@typescript-eslint/eslint-plugin": "^5.58.0", | ||
"@typescript-eslint/parser": "^5.58.0", | ||
"@vitest/coverage-istanbul": "^1.1.0", | ||
"eslint": "^8.56.0", | ||
"fast-check": "^3.15.0", | ||
"in-publish": "^2.0.1", | ||
"prettier": "^3.1.1", | ||
"publint": "^0.2.7", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.3.3", | ||
"vite-tsconfig-paths": "^4.2.2", | ||
"vitest": "^1.1.0" | ||
}, | ||
"githubUrl": "https://github.com/nvie/itertools", | ||
"sideEffects": false | ||
"name": "itertools", | ||
"version": "2.1.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" | ||
}, | ||
"types": "./dist/index.d.ts", | ||
"main": "./dist/index.js", | ||
"exports": { | ||
".": { | ||
"import": { | ||
"types": "./dist/index.d.mts", | ||
"default": "./dist/index.mjs" | ||
}, | ||
"require": { | ||
"types": "./dist/index.d.ts", | ||
"module": "./dist/index.mjs", | ||
"default": "./dist/index.js" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"actually-prepublish": "echo \"\\n\\nPlease run \\`bin/publish.sh <options>\\` instead.\\n\\n\" && exit 2", | ||
"build": "tsup", | ||
"clean": "rimraf dist", | ||
"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", | ||
"prepublish": "in-publish && npm run actually-prepublish || not-in-publish", | ||
"test": "vitest run --coverage" | ||
}, | ||
"files": [ | ||
"dist/", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"keywords": [ | ||
"itertool", | ||
"itertools", | ||
"node-itertools" | ||
], | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.13.5", | ||
"@typescript-eslint/eslint-plugin": "^5.58.0", | ||
"@typescript-eslint/parser": "^5.58.0", | ||
"@vitest/coverage-istanbul": "^1.1.0", | ||
"eslint": "^8.56.0", | ||
"fast-check": "^3.15.0", | ||
"in-publish": "^2.0.1", | ||
"prettier": "^3.1.1", | ||
"publint": "^0.2.7", | ||
"tsup": "^8.0.1", | ||
"typescript": "^5.3.3", | ||
"vite-tsconfig-paths": "^4.2.2", | ||
"vitest": "^1.1.0" | ||
}, | ||
"githubUrl": "https://github.com/nvie/itertools", | ||
"sideEffects": false | ||
} |
Oops, something went wrong.