From 7b84f4e839f75b227a5233325f064900a6032f9a Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Wed, 2 Sep 2015 22:22:29 +0900 Subject: [PATCH] package.json --- package.json | 71 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..41e6e22 --- /dev/null +++ b/package.json @@ -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" + } +}