forked from es-shims/Object.values
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
71 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
{ | ||
"name": "object.values", | ||
"version": "0.0.0", | ||
"author": "Jordan Harband", | ||
"description": "ES7 spec-compliant Object.values shim.", | ||
"license": "MIT", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "npm run lint && es-shim-api && npm run test:shimmed && npm run test:module && npm run security", | ||
"test:shimmed": "node test/shimmed.js", | ||
"test:module": "node test/index.js", | ||
"coverage": "covert test/*.js", | ||
"coverage-quiet": "covert test/*.js --quiet", | ||
"lint": "npm run jscs && npm run eslint", | ||
"eslint": "eslint test/*.js *.js", | ||
"jscs": "jscs test/*.js *.js", | ||
"security": "nsp package" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/es-shims/Object.values.git" | ||
}, | ||
"keywords": [ | ||
"Object.values", | ||
"Object.keys", | ||
"Object.entries", | ||
"values", | ||
"ES7", | ||
"shim", | ||
"object", | ||
"keys", | ||
"entries", | ||
"polyfill" | ||
], | ||
"dependencies": { | ||
"define-properties": "^1.1.1", | ||
"es-abstract": "^1.3.1", | ||
"object-keys": "^1.0.7" | ||
}, | ||
"devDependencies": { | ||
"tape": "^4.2.0", | ||
"array-map": "^0.0.0", | ||
"covert": "^1.1.0", | ||
"jscs": "^2.1.1", | ||
"nsp": "^1.1.0", | ||
"eslint": "^1.3.1", | ||
"@ljharb/eslint-config": "^1.1.0", | ||
"@es-shims/api": "^1.0.0" | ||
}, | ||
"testling": { | ||
"files": "test/index.js", | ||
"browsers": [ | ||
"iexplore/9.0..latest", | ||
"firefox/4.0..6.0", | ||
"firefox/15.0..latest", | ||
"firefox/nightly", | ||
"chrome/4.0..10.0", | ||
"chrome/20.0..latest", | ||
"chrome/canary", | ||
"opera/11.6..latest", | ||
"opera/next", | ||
"safari/5.0..latest", | ||
"ipad/6.0..latest", | ||
"iphone/6.0..latest", | ||
"android-browser/4.2" | ||
] | ||
}, | ||
"engines": { | ||
"node": ">= 0.4" | ||
} | ||
} |