source: node_modules/set-function-length/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[d24f17c]1{
2 "name": "set-function-length",
3 "version": "1.2.1",
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 && npm run emit",
17 "prepublish": "not-in-publish || npm run prepublishOnly",
18 "prepublishOnly": "safe-publish-latest",
19 "tsc": "tsc -p .",
20 "preemit": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map",
21 "emit": "npm run tsc -- --noEmit false --emitDeclarationOnly",
22 "postemit": "rm test/*.ts test/*.ts.map",
23 "prelint": "evalmd README.md",
24 "lint": "eslint --ext=js,mjs .",
25 "postlint": "npm run tsc",
26 "pretest": "npm run lint",
27 "tests-only": "nyc tape 'test/**/*.js'",
28 "test": "npm run tests-only",
29 "posttest": "aud --production",
30 "version": "auto-changelog && git add CHANGELOG.md",
31 "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
32 },
33 "repository": {
34 "type": "git",
35 "url": "git+https://github.com/ljharb/set-function-length.git"
36 },
37 "keywords": [
38 "javascript",
39 "ecmascript",
40 "set",
41 "function",
42 "length",
43 "function.length"
44 ],
45 "author": "Jordan Harband <ljharb@gmail.com>",
46 "license": "MIT",
47 "bugs": {
48 "url": "https://github.com/ljharb/set-function-length/issues"
49 },
50 "homepage": "https://github.com/ljharb/set-function-length#readme",
51 "dependencies": {
52 "define-data-property": "^1.1.2",
53 "es-errors": "^1.3.0",
54 "function-bind": "^1.1.2",
55 "get-intrinsic": "^1.2.3",
56 "gopd": "^1.0.1",
57 "has-property-descriptors": "^1.0.1"
58 },
59 "devDependencies": {
60 "@ljharb/eslint-config": "^21.1.0",
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.6",
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.4",
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 "!*.d.ts",
101 "!*.d.ts.map"
102 ]
103 }
104}
Note: See TracBrowser for help on using the repository browser.