source: imaps-frontend/node_modules/set-function-length/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.6 KB
RevLine 
[d565449]1{
2 "name": "set-function-length",
3 "version": "1.2.2",
4 "description": "Set a function's length property",
5 "main": "index.js",
6 "exports": {
7 ".": "./index.js",
8 "./env": "./env.js",
9 "./package.json": "./package.json"
10 },
11 "sideEffects": false,
12 "directories": {
13 "test": "test"
14 },
15 "scripts": {
16 "prepack": "npmignore --auto --commentLines=autogenerated",
17 "prepublish": "not-in-publish || npm run prepublishOnly",
18 "prepublishOnly": "safe-publish-latest",
19 "tsc": "tsc -p .",
20 "posttsc": "attw -P",
21 "prelint": "evalmd README.md",
22 "lint": "eslint --ext=js,mjs .",
23 "postlint": "npm run tsc",
24 "pretest": "npm run lint",
25 "tests-only": "nyc tape 'test/**/*.js'",
26 "test": "npm run tests-only",
27 "posttest": "aud --production",
28 "version": "auto-changelog && git add CHANGELOG.md",
29 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
30 },
31 "repository": {
32 "type": "git",
33 "url": "git+https://github.com/ljharb/set-function-length.git"
34 },
35 "keywords": [
36 "javascript",
37 "ecmascript",
38 "set",
39 "function",
40 "length",
41 "function.length"
42 ],
43 "author": "Jordan Harband <ljharb@gmail.com>",
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/ljharb/set-function-length/issues"
47 },
48 "homepage": "https://github.com/ljharb/set-function-length#readme",
49 "dependencies": {
50 "define-data-property": "^1.1.4",
51 "es-errors": "^1.3.0",
52 "function-bind": "^1.1.2",
53 "get-intrinsic": "^1.2.4",
54 "gopd": "^1.0.1",
55 "has-property-descriptors": "^1.0.2"
56 },
57 "devDependencies": {
58 "@arethetypeswrong/cli": "^0.15.1",
59 "@ljharb/eslint-config": "^21.1.0",
60 "@ljharb/tsconfig": "^0.1.1",
61 "@types/call-bind": "^1.0.5",
62 "@types/define-properties": "^1.1.5",
63 "@types/es-value-fixtures": "^1.4.4",
64 "@types/for-each": "^0.3.3",
65 "@types/function-bind": "^1.1.10",
66 "@types/gopd": "^1.0.3",
67 "@types/has-property-descriptors": "^1.0.3",
68 "@types/object-inspect": "^1.8.4",
69 "@types/tape": "^5.6.4",
70 "aud": "^2.0.4",
71 "auto-changelog": "^2.4.0",
72 "call-bind": "^1.0.7",
73 "es-value-fixtures": "^1.4.2",
74 "eslint": "=8.8.0",
75 "evalmd": "^0.0.19",
76 "for-each": "^0.3.3",
77 "in-publish": "^2.0.1",
78 "npmignore": "^0.3.1",
79 "nyc": "^10.3.2",
80 "object-inspect": "^1.13.1",
81 "safe-publish-latest": "^2.0.0",
82 "tape": "^5.7.5",
83 "typescript": "next"
84 },
85 "engines": {
86 "node": ">= 0.4"
87 },
88 "auto-changelog": {
89 "output": "CHANGELOG.md",
90 "template": "keepachangelog",
91 "unreleased": false,
92 "commitLimit": false,
93 "backfillLimit": false,
94 "hideCredit": true
95 },
96 "publishConfig": {
97 "ignore": [
98 ".github/workflows",
99 "test"
100 ]
101 }
102}
Note: See TracBrowser for help on using the repository browser.