source: imaps-frontend/node_modules/string.prototype.trimend/package.json

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 2.0 KB
Line 
1{
2 "name": "string.prototype.trimend",
3 "version": "1.0.8",
4 "author": "Jordan Harband <ljharb@gmail.com>",
5 "contributors": [
6 "Jordan Harband <ljharb@gmail.com>",
7 "Khaled Al-Ansari <khaledelansari@gmail.com>"
8 ],
9 "funding": {
10 "url": "https://github.com/sponsors/ljharb"
11 },
12 "description": "ES2019 spec-compliant String.prototype.trimEnd shim.",
13 "license": "MIT",
14 "main": "index.js",
15 "scripts": {
16 "prepack": "npmignore --auto --commentLines=autogenerated",
17 "prepublish": "not-in-publish || npm run prepublishOnly",
18 "prepublishOnly": "safe-publish-latest",
19 "lint": "eslint --ext=js,mjs .",
20 "postlint": "es-shim-api --bound",
21 "pretest": "npm run lint",
22 "test": "npm run tests-only",
23 "posttest": "aud --production",
24 "tests-only": "nyc tape 'test/**/*.js'",
25 "version": "auto-changelog && git add CHANGELOG.md",
26 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
27 },
28 "repository": {
29 "type": "git",
30 "url": "git://github.com/es-shims/String.prototype.trimEnd.git"
31 },
32 "keywords": [
33 "es6",
34 "es7",
35 "es8",
36 "javascript",
37 "prototype",
38 "polyfill",
39 "utility",
40 "trim",
41 "trimLeft",
42 "trimRight",
43 "trimStart",
44 "trimEnd",
45 "tc39"
46 ],
47 "devDependencies": {
48 "@es-shims/api": "^2.4.2",
49 "@ljharb/eslint-config": "^21.1.0",
50 "aud": "^2.0.4",
51 "auto-changelog": "^2.4.0",
52 "eslint": "=8.8.0",
53 "functions-have-names": "^1.2.3",
54 "has-strict-mode": "^1.0.1",
55 "in-publish": "^2.0.1",
56 "npmignore": "^0.3.1",
57 "nyc": "^10.3.2",
58 "safe-publish-latest": "^2.0.0",
59 "tape": "^5.7.5"
60 },
61 "auto-changelog": {
62 "output": "CHANGELOG.md",
63 "template": "keepachangelog",
64 "unreleased": false,
65 "commitLimit": false,
66 "backfillLimit": false,
67 "hideCredit": true
68 },
69 "dependencies": {
70 "call-bind": "^1.0.7",
71 "define-properties": "^1.2.1",
72 "es-object-atoms": "^1.0.0"
73 },
74 "publishConfig": {
75 "ignore": [
76 ".github/workflows"
77 ]
78 }
79}
Note: See TracBrowser for help on using the repository browser.