Projekt

Obecné

Profil

Stáhnout (1.62 KB) Statistiky
| Větev: | Revize:
1
{
2
	"name": "is-arguments",
3
	"version": "1.0.4",
4
	"description": "Is this an arguments object? It's a harder question than you think.",
5
	"author": {
6
		"name": "Jordan Harband",
7
		"email": "ljharb@gmail.com",
8
		"url": "http://ljharb.codes"
9
	},
10
	"contributors": [
11
		{
12
			"name": "Jordan Harband",
13
			"email": "ljharb@gmail.com",
14
			"url": "http://ljharb.codes"
15
		}
16
	],
17
	"license": "MIT",
18
	"main": "index.js",
19
	"scripts": {
20
		"pretest": "npm run --silent lint",
21
		"test": "npm run --silent tests-only",
22
		"tests-only": "node test.js",
23
		"posttest": "npm run --silent security",
24
		"security": "nsp check",
25
		"coverage": "covert test.js",
26
		"lint": "npm run --silent jscs && npm run --silent eslint",
27
		"jscs": "jscs *.js",
28
		"eslint": "eslint *.js"
29
	},
30
	"repository": {
31
		"type": "git",
32
		"url": "git://github.com/ljharb/is-arguments.git"
33
	},
34
	"bugs": {
35
		"url": "https://github.com/ljharb/is-arguments/issues"
36
	},
37
	"homepage": "https://github.com/ljharb/is-arguments",
38
	"keywords": [
39
		"arguments",
40
		"js",
41
		"javascript",
42
		"is-arguments",
43
		"is",
44
		"object"
45
	],
46
	"dependencies": {},
47
	"devDependencies": {
48
		"@ljharb/eslint-config": "^13.0.0",
49
		"covert": "^1.1.0",
50
		"eslint": "^5.8.0",
51
		"jscs": "^3.0.7",
52
		"nsp": "^3.2.1",
53
		"tape": "^4.9.1"
54
	},
55
	"testling": {
56
		"files": "test.js",
57
		"browsers": [
58
			"iexplore/6.0..latest",
59
			"firefox/3.0..6.0",
60
			"firefox/15.0..latest",
61
			"firefox/nightly",
62
			"chrome/4.0..10.0",
63
			"chrome/20.0..latest",
64
			"chrome/canary",
65
			"opera/10.0..latest",
66
			"opera/next",
67
			"safari/4.0..latest",
68
			"ipad/6.0..latest",
69
			"iphone/6.0..latest",
70
			"android-browser/4.2"
71
		]
72
	},
73
	"engines": {
74
		"node": ">= 0.4"
75
	}
76
}
(7-7/8)