Projekt

Obecné

Profil

Stáhnout (2.65 KB) Statistiky
| Větev: | Revize:
1
{
2
	"name": "es-abstract",
3
	"version": "1.17.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": "ECMAScript spec abstract operations.",
20
	"license": "MIT",
21
	"main": "index.js",
22
	"scripts": {
23
		"prespackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs rm || true",
24
		"spackle": "node operations/spackle 1",
25
		"postspackle": "git ls-files | xargs git check-attr spackled | grep -v 'unspecified$' | cut -d: -f1 | xargs git add",
26
		"prepublish": "safe-publish-latest && (not-in-publish || npm run spackle)",
27
		"pretest": "npm run lint",
28
		"test": "npm run tests-only",
29
		"posttest": "npx aud --production",
30
		"tests-only": "node test",
31
		"coverage": "nyc npm run tests-only >/dev/null",
32
		"postcoverage": "nyc report",
33
		"lint": "eslint .",
34
		"eccheck": "eclint check *.js **/*.js > /dev/null"
35
	},
36
	"repository": {
37
		"type": "git",
38
		"url": "git://github.com/ljharb/es-abstract.git"
39
	},
40
	"keywords": [
41
		"ECMAScript",
42
		"ES",
43
		"abstract",
44
		"operation",
45
		"abstract operation",
46
		"JavaScript",
47
		"ES5",
48
		"ES6",
49
		"ES7"
50
	],
51
	"dependencies": {
52
		"es-to-primitive": "^1.2.1",
53
		"function-bind": "^1.1.1",
54
		"has": "^1.0.3",
55
		"has-symbols": "^1.0.1",
56
		"is-callable": "^1.1.5",
57
		"is-regex": "^1.0.5",
58
		"object-inspect": "^1.7.0",
59
		"object-keys": "^1.1.1",
60
		"object.assign": "^4.1.0",
61
		"string.prototype.trimleft": "^2.1.1",
62
		"string.prototype.trimright": "^2.1.1"
63
	},
64
	"devDependencies": {
65
		"@ljharb/eslint-config": "^16.0.0",
66
		"array.prototype.indexof": "^1.0.0",
67
		"cheerio": "^1.0.0-rc.3",
68
		"diff": "^4.0.2",
69
		"eclint": "^2.8.1",
70
		"eslint": "^6.8.0",
71
		"foreach": "^2.0.5",
72
		"functions-have-names": "^1.2.1",
73
		"has-strict-mode": "^1.0.0",
74
		"in-publish": "^2.0.0",
75
		"make-arrow-function": "^1.2.0",
76
		"nyc": "^10.3.2",
77
		"object-is": "^1.0.2",
78
		"object.fromentries": "^2.0.2",
79
		"safe-publish-latest": "^1.1.4",
80
		"tape": "^5.0.0-next.5"
81
	},
82
	"testling": {
83
		"files": "test/index.js",
84
		"browsers": [
85
			"iexplore/6.0..latest",
86
			"firefox/3.0..6.0",
87
			"firefox/15.0..latest",
88
			"firefox/nightly",
89
			"chrome/4.0..10.0",
90
			"chrome/20.0..latest",
91
			"chrome/canary",
92
			"opera/10.0..latest",
93
			"opera/next",
94
			"safari/4.0..latest",
95
			"ipad/6.0..latest",
96
			"iphone/6.0..latest",
97
			"android-browser/4.2"
98
		]
99
	},
100
	"engines": {
101
		"node": ">= 0.4"
102
	},
103
	"greenkeeper": {
104
		"//": "nyc is ignored because it requires node 4+, and we support older than that",
105
		"ignore": [
106
			"nyc"
107
		]
108
	}
109
}
(17-17/17)