1
|
{
|
2
|
"name": "is-regex",
|
3
|
"version": "1.0.5",
|
4
|
"description": "Is this value a JS regex? Works cross-realm/iframe, and despite ES6 @@toStringTag",
|
5
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
6
|
"funding": {
|
7
|
"url": "https://github.com/sponsors/ljharb"
|
8
|
},
|
9
|
"license": "MIT",
|
10
|
"main": "index.js",
|
11
|
"scripts": {
|
12
|
"pretest": "npm run lint",
|
13
|
"test": "npm run tests-only",
|
14
|
"tests-only": "node --harmony --es-staging test",
|
15
|
"posttest": "npx aud",
|
16
|
"coverage": "covert test/index.js",
|
17
|
"lint": "eslint .",
|
18
|
"eccheck": "eclint check *.js **/*.js > /dev/null",
|
19
|
"version": "auto-changelog && git add CHANGELOG.md",
|
20
|
"postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
|
21
|
},
|
22
|
"repository": {
|
23
|
"type": "git",
|
24
|
"url": "git://github.com/ljharb/is-regex.git"
|
25
|
},
|
26
|
"bugs": {
|
27
|
"url": "https://github.com/ljharb/is-regex/issues"
|
28
|
},
|
29
|
"homepage": "https://github.com/ljharb/is-regex",
|
30
|
"keywords": [
|
31
|
"regex",
|
32
|
"regexp",
|
33
|
"is",
|
34
|
"regular expression",
|
35
|
"regular",
|
36
|
"expression"
|
37
|
],
|
38
|
"dependencies": {
|
39
|
"has": "^1.0.3"
|
40
|
},
|
41
|
"devDependencies": {
|
42
|
"@ljharb/eslint-config": "^15.0.2",
|
43
|
"auto-changelog": "^1.16.2",
|
44
|
"covert": "^1.1.1",
|
45
|
"eclint": "^2.8.1",
|
46
|
"eslint": "^6.7.2",
|
47
|
"tape": "^4.11.0"
|
48
|
},
|
49
|
"testling": {
|
50
|
"files": "test.js",
|
51
|
"browsers": [
|
52
|
"iexplore/6.0..latest",
|
53
|
"firefox/3.0..6.0",
|
54
|
"firefox/15.0..latest",
|
55
|
"firefox/nightly",
|
56
|
"chrome/4.0..10.0",
|
57
|
"chrome/20.0..latest",
|
58
|
"chrome/canary",
|
59
|
"opera/10.0..12.0",
|
60
|
"opera/15.0..latest",
|
61
|
"opera/next",
|
62
|
"safari/4.0..latest",
|
63
|
"ipad/6.0..latest",
|
64
|
"iphone/6.0..latest",
|
65
|
"android-browser/4.2"
|
66
|
]
|
67
|
},
|
68
|
"engines": {
|
69
|
"node": ">= 0.4"
|
70
|
},
|
71
|
"auto-changelog": {
|
72
|
"output": "CHANGELOG.md",
|
73
|
"template": "keepachangelog",
|
74
|
"unreleased": false,
|
75
|
"commitLimit": false,
|
76
|
"backfillLimit": false
|
77
|
}
|
78
|
}
|