UNPKG

1.63 kBJSONView Raw
1{
2 "name": "object.entries",
3 "version": "1.0.2",
4 "author": "Jordan Harband",
5 "description": "ES7 spec-compliant Object.entries shim.",
6 "license": "MIT",
7 "main": "index.js",
8 "scripts": {
9 "test": "npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security",
10 "test:shimmed": "node test/shimmed.js",
11 "test:module": "node test/index.js",
12 "coverage": "covert test/*.js",
13 "coverage-quiet": "covert test/*.js --quiet",
14 "lint": "npm run jscs && npm run eslint",
15 "eslint": "eslint test/*.js *.js",
16 "jscs": "jscs test/*.js *.js",
17 "security": "nsp package"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git://github.com/es-shims/Object.entries.git"
22 },
23 "keywords": [
24 "Object.entries",
25 "Object.values",
26 "Object.keys",
27 "entries",
28 "values",
29 "ES7",
30 "shim",
31 "object",
32 "keys",
33 "polyfill",
34 "es-shim API"
35 ],
36 "dependencies": {
37 "define-properties": "^1.1.1",
38 "es-abstract": "^1.3.1",
39 "has": "^1.0.1",
40 "object-keys": "^1.0.7"
41 },
42 "devDependencies": {
43 "tape": "^4.2.0",
44 "array-map": "^0.0.0",
45 "covert": "^1.1.0",
46 "jscs": "^2.1.1",
47 "nsp": "^1.1.0",
48 "eslint": "^1.5.0",
49 "@ljharb/eslint-config": "^1.2.0",
50 "@es-shims/api": "^1.0.0"
51 },
52 "testling": {
53 "files": "test/index.js",
54 "browsers": [
55 "iexplore/9.0..latest",
56 "firefox/4.0..6.0",
57 "firefox/15.0..latest",
58 "firefox/nightly",
59 "chrome/4.0..10.0",
60 "chrome/20.0..latest",
61 "chrome/canary",
62 "opera/11.6..latest",
63 "opera/next",
64 "safari/5.0..latest",
65 "ipad/6.0..latest",
66 "iphone/6.0..latest",
67 "android-browser/4.2"
68 ]
69 },
70 "engines": {
71 "node": ">= 0.4"
72 }
73}