Projekt

Obecné

Profil

Stáhnout (2.49 KB) Statistiky
| Větev: | Revize:
1
{
2
	"name": "is-callable",
3
	"version": "1.1.5",
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
		"pretest": "npm run --silent lint",
24
		"test": "npm run --silent tests-only",
25
		"posttest": "npx aud",
26
		"tests-only": "npm run --silent test:stock && npm run --silent test:staging",
27
		"test:stock": "node test",
28
		"test:staging": "node --es-staging test",
29
		"coverage": "npm run --silent istanbul",
30
		"covert": "covert test",
31
		"covert:quiet": "covert test --quiet",
32
		"istanbul": "npm run --silent istanbul:clean && npm run --silent istanbul:std && npm run --silent istanbul:harmony && npm run --silent istanbul:merge && istanbul check",
33
		"istanbul:clean": "rimraf coverage coverage-std coverage-harmony",
34
		"istanbul:merge": "istanbul-merge --out coverage/coverage.raw.json coverage-harmony/coverage.raw.json coverage-std/coverage.raw.json && istanbul report html",
35
		"istanbul:harmony": "node --harmony ./node_modules/istanbul/lib/cli.js cover test --dir coverage-harmony",
36
		"istanbul:std": "istanbul cover test --report html --dir coverage-std",
37
		"prelint": "eclint check *",
38
		"lint": "eslint ."
39
	},
40
	"repository": {
41
		"type": "git",
42
		"url": "git://github.com/ljharb/is-callable.git"
43
	},
44
	"keywords": [
45
		"Function",
46
		"function",
47
		"callable",
48
		"generator",
49
		"generator function",
50
		"arrow",
51
		"arrow function",
52
		"ES6",
53
		"toStringTag",
54
		"@@toStringTag"
55
	],
56
	"dependencies": {},
57
	"devDependencies": {
58
		"@ljharb/eslint-config": "^15.0.2",
59
		"covert": "^1.1.1",
60
		"eclint": "^2.8.1",
61
		"eslint": "^6.7.2",
62
		"foreach": "^2.0.5",
63
		"istanbul": "1.1.0-alpha.1",
64
		"istanbul-merge": "^1.1.1",
65
		"make-arrow-function": "^1.1.0",
66
		"make-generator-function": "^1.1.0",
67
		"rimraf": "^2.7.1",
68
		"tape": "^4.12.0"
69
	},
70
	"testling": {
71
		"files": "test/index.js",
72
		"browsers": [
73
			"iexplore/6.0..latest",
74
			"firefox/3.0..6.0",
75
			"firefox/15.0..latest",
76
			"firefox/nightly",
77
			"chrome/4.0..10.0",
78
			"chrome/20.0..latest",
79
			"chrome/canary",
80
			"opera/10.0..latest",
81
			"opera/next",
82
			"safari/4.0..latest",
83
			"ipad/6.0..latest",
84
			"iphone/6.0..latest",
85
			"android-browser/4.2"
86
		]
87
	},
88
	"engines": {
89
		"node": ">= 0.4"
90
	}
91
}
(7-7/7)