Skip to content

Commit

Permalink
package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 15, 2014
1 parent eb92695 commit a107259
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions package.json
@@ -0,0 +1,63 @@
{
"name": "is-date-object",
"version": "0.0.0",
"author": "Jordan Harband",
"description": "Is this value a JS Date object? This module works cross-realm/iframe, and despite ES6 @@toStringTag.",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "npm run lint && node --harmony --es-staging test.js && npm run security",
"coverage": "covert test.js",
"coverage-quiet": "covert test.js --quiet",
"lint": "npm run jscs && npm run eslint",
"jscs": "jscs test.js *.js",
"eslint": "eslint test.js *.js",
"eccheck": "editorconfig-tools check *.js **/*.js > /dev/null",
"security": "nsp package"
},
"repository": {
"type": "git",
"url": "git://github.com/ljharb/is-date-object.git"
},
"keywords": [
"Date",
"ES6",
"toStringTag",
"@@toStringTag",
"Date object"
],
"dependencies": {},
"devDependencies": {
"foreach": "~2.0.5",
"is": "~2.2.0",
"tape": "~3.4.0",
"indexof": "~0.0.1",
"covert": "1.0.0",
"jscs": "~1.10.0",
"editorconfig-tools": "~0.0.1",
"nsp": "~1.0.0",
"eslint": "~0.12.0"
},
"testling": {
"files": "test.js",
"browsers": [
"iexplore/6.0..latest",
"firefox/3.0..6.0",
"firefox/15.0..latest",
"firefox/nightly",
"chrome/4.0..10.0",
"chrome/20.0..latest",
"chrome/canary",
"opera/10.0..latest",
"opera/next",
"safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2"
]
},
"engines": {
"node": ">= 0.4"
}
}

0 comments on commit a107259

Please sign in to comment.