-
-
Notifications
You must be signed in to change notification settings - Fork 3
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
64 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,64 @@ | ||
{ | ||
"name": "is-string", | ||
"version": "0.0.0", | ||
"author": "Jordan Harband", | ||
"description": "Is this value a JS String object or primitive? 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-string.git" | ||
}, | ||
"keywords": [ | ||
"String", | ||
"string", | ||
"ES6", | ||
"toStringTag", | ||
"@@toStringTag", | ||
"String 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.13.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" | ||
} | ||
} | ||
|