is-class
Version:
Check if function is an ES6 class.
59 lines (58 loc) • 1.2 kB
JSON
{
"name": "is-class",
"version": "0.0.9",
"description": "Check if function is an ES6 class.",
"main": "is-class.js",
"types": "index.d.ts",
"typings": "index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "tape test/*.js",
"lint": "standard --fix *.js"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelmota/is-class"
},
"keywords": [
"predicate",
"function",
"class",
"es6"
],
"author": {
"name": "Miguel Mota",
"email": "hello@miguelmota.com",
"url": "https://miguelmota.com/"
},
"license": {
"type": "MIT",
"url": "https://github.com/miguelmota/is-class/blob/master/LICENSE"
},
"bugs": {
"url": "https://github.com/miguelmota/is-class/issues"
},
"homepage": "https://github.com/miguelmota/is-class",
"devDependencies": {
"@babel/core": "^7.1.5",
"@babel/plugin-transform-classes": "^7.1.0",
"standard": "^12.0.1",
"tape": "^4.9.1"
},
"standard": {
"globals": [
"module",
"exports",
"define",
"describe",
"before",
"after",
"beforeEach",
"afterEach",
"it",
"assert"
]
}
}