Skip to content

Commit

Permalink
package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Sep 2, 2015
1 parent 5251629 commit 7b84f4e
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions 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"
}
}

0 comments on commit 7b84f4e

Please sign in to comment.