1 | {
|
---|
2 | "name": "is-callable",
|
---|
3 | "version": "1.2.7",
|
---|
4 | "author": {
|
---|
5 | "name": "Jordan Harband",
|
---|
6 | "email": "ljharb@gmail.com",
|
---|
7 | "url": "http://ljharb.codes"
|
---|
8 | },
|
---|
9 | "funding": {
|
---|
10 | "url": "https://github.com/sponsors/ljharb"
|
---|
11 | },
|
---|
12 | "contributors": [
|
---|
13 | {
|
---|
14 | "name": "Jordan Harband",
|
---|
15 | "email": "ljharb@gmail.com",
|
---|
16 | "url": "http://ljharb.codes"
|
---|
17 | }
|
---|
18 | ],
|
---|
19 | "description": "Is this JS value callable? Works with Functions and GeneratorFunctions, despite ES6 @@toStringTag.",
|
---|
20 | "license": "MIT",
|
---|
21 | "main": "index.js",
|
---|
22 | "scripts": {
|
---|
23 | "prepack": "npmignore --auto --commentLines=autogenerated",
|
---|
24 | "version": "auto-changelog && git add CHANGELOG.md",
|
---|
25 | "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"",
|
---|
26 | "prepublishOnly": "safe-publish-latest",
|
---|
27 | "prepublish": "not-in-publish || npm run prepublishOnly",
|
---|
28 | "pretest": "npm run --silent lint",
|
---|
29 | "test": "npm run tests-only --",
|
---|
30 | "posttest": "aud --production",
|
---|
31 | "tests-only": "nyc tape 'test/**/*.js'",
|
---|
32 | "prelint": "eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git')",
|
---|
33 | "lint": "eslint --ext=js,mjs ."
|
---|
34 | },
|
---|
35 | "repository": {
|
---|
36 | "type": "git",
|
---|
37 | "url": "git://github.com/inspect-js/is-callable.git"
|
---|
38 | },
|
---|
39 | "keywords": [
|
---|
40 | "Function",
|
---|
41 | "function",
|
---|
42 | "callable",
|
---|
43 | "generator",
|
---|
44 | "generator function",
|
---|
45 | "arrow",
|
---|
46 | "arrow function",
|
---|
47 | "ES6",
|
---|
48 | "toStringTag",
|
---|
49 | "@@toStringTag"
|
---|
50 | ],
|
---|
51 | "devDependencies": {
|
---|
52 | "@ljharb/eslint-config": "^21.0.0",
|
---|
53 | "aud": "^2.0.0",
|
---|
54 | "auto-changelog": "^2.4.0",
|
---|
55 | "available-typed-arrays": "^1.0.5",
|
---|
56 | "eclint": "^2.8.1",
|
---|
57 | "es-value-fixtures": "^1.4.2",
|
---|
58 | "eslint": "=8.8.0",
|
---|
59 | "for-each": "^0.3.3",
|
---|
60 | "has-tostringtag": "^1.0.0",
|
---|
61 | "make-arrow-function": "^1.2.0",
|
---|
62 | "make-async-function": "^1.0.0",
|
---|
63 | "make-generator-function": "^2.0.0",
|
---|
64 | "npmignore": "^0.3.0",
|
---|
65 | "nyc": "^10.3.2",
|
---|
66 | "object-inspect": "^1.12.2",
|
---|
67 | "rimraf": "^2.7.1",
|
---|
68 | "safe-publish-latest": "^2.0.0",
|
---|
69 | "tape": "^5.6.0"
|
---|
70 | },
|
---|
71 | "testling": {
|
---|
72 | "files": "test/index.js",
|
---|
73 | "browsers": [
|
---|
74 | "iexplore/6.0..latest",
|
---|
75 | "firefox/3.0..6.0",
|
---|
76 | "firefox/15.0..latest",
|
---|
77 | "firefox/nightly",
|
---|
78 | "chrome/4.0..10.0",
|
---|
79 | "chrome/20.0..latest",
|
---|
80 | "chrome/canary",
|
---|
81 | "opera/10.0..latest",
|
---|
82 | "opera/next",
|
---|
83 | "safari/4.0..latest",
|
---|
84 | "ipad/6.0..latest",
|
---|
85 | "iphone/6.0..latest",
|
---|
86 | "android-browser/4.2"
|
---|
87 | ]
|
---|
88 | },
|
---|
89 | "engines": {
|
---|
90 | "node": ">= 0.4"
|
---|
91 | },
|
---|
92 | "auto-changelog": {
|
---|
93 | "output": "CHANGELOG.md",
|
---|
94 | "template": "keepachangelog",
|
---|
95 | "unreleased": false,
|
---|
96 | "commitLimit": false,
|
---|
97 | "backfillLimit": false,
|
---|
98 | "hideCredit": true,
|
---|
99 | "startingVersion": "v1.2.5"
|
---|
100 | },
|
---|
101 | "publishConfig": {
|
---|
102 | "ignore": [
|
---|
103 | ".github/workflows"
|
---|
104 | ]
|
---|
105 | }
|
---|
106 | }
|
---|