123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "string.prototype.trimstart",
- "version": "1.0.4",
- "author": "Jordan Harband <ljharb@gmail.com>",
- "contributors": [
- "Jordan Harband <ljharb@gmail.com>",
- "Khaled Al-Ansari <khaledelansari@gmail.com>"
- ],
- "funding": {
- "url": "https://github.com/sponsors/ljharb"
- },
- "description": "ES2019 spec-compliant String.prototype.trimStart shim.",
- "license": "MIT",
- "main": "index.js",
- "scripts": {
- "prepublish": "safe-publish-latest",
- "lint": "eslint .",
- "postlint": "es-shim-api --bound",
- "pretest": "npm run lint",
- "test": "npm run tests-only",
- "posttest": "aud --production",
- "tests-only": "nyc tape 'test/**/*.js'",
- "version": "auto-changelog && git add CHANGELOG.md",
- "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
- },
- "repository": {
- "type": "git",
- "url": "git://github.com/es-shims/String.prototype.trimStart.git"
- },
- "keywords": [
- "es6",
- "es7",
- "es8",
- "javascript",
- "prototype",
- "polyfill",
- "utility",
- "trim",
- "trimLeft",
- "trimRight",
- "trimStart",
- "trimEnd",
- "tc39"
- ],
- "devDependencies": {
- "@es-shims/api": "^2.1.2",
- "@ljharb/eslint-config": "^17.5.1",
- "aud": "^1.1.4",
- "auto-changelog": "^2.2.1",
- "eslint": "^7.20.0",
- "functions-have-names": "^1.2.2",
- "has-strict-mode": "^1.0.1",
- "nyc": "^10.3.2",
- "safe-publish-latest": "^1.1.4",
- "tape": "^5.2.0"
- },
- "auto-changelog": {
- "output": "CHANGELOG.md",
- "template": "keepachangelog",
- "unreleased": false,
- "commitLimit": false,
- "backfillLimit": false,
- "hideCredit": true
- },
- "dependencies": {
- "call-bind": "^1.0.2",
- "define-properties": "^1.1.3"
- }
- }
|