Skip to content

Commit

Permalink
package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Jan 24, 2015
1 parent 5d9a744 commit 7d4082c
Showing 1 changed file with 57 additions and 0 deletions.
57 changes: 57 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "is-symbol",
"version": "1.0.0",
"description": "Determine if a function is an ES6 generator function or not.",
"main": "index.js",
"scripts": {
"test": "npm run lint && node --es-staging --harmony test/index.js && npm run security",
"coverage": "covert test/index.js",
"coverage:quiet": "covert test/index.js --quiet",
"lint": "jscs *.js */*.js",
"security": "nsp package"
},
"repository": {
"type": "git",
"url": "git://github.com/ljharb/is-symbol.git"
},
"keywords": [
"symbol",
"es6",
"is",
"Symbol"
],
"author": "Jordan Harband",
"license": "MIT",
"bugs": {
"url": "https://github.com/ljharb/is-symbol/issues"
},
"dependencies": {},
"devDependencies": {
"tape": "~3.4.0",
"covert": "1.0.0",
"jscs": "~1.10.0",
"nsp": "~1.0.0"
},
"testling": {
"files": "test/index.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 7d4082c

Please sign in to comment.