-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 889 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "is-es6-generators",
"version": "1.0.2",
"description": "Check whether a value is a `Generator` or `GeneratorFunction`. The `co` way, more strict checking. Always return boolean true or false, never null or undefined.",
"repository": "tunnckoCore/is-es6-generators",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "standard && node test.js"
},
"dependencies": {
"is-es6-generator": "~1.0.0",
"is-es6-generator-function": "~1.0.0"
},
"devDependencies": {
"assertit": "^0.1.0"
},
"keywords": [
"check",
"es2015",
"es6",
"es7",
"function",
"functions",
"generator",
"generatorfunction",
"generators",
"is",
"is-function",
"is-generator",
"is-generator-function",
"next",
"validate"
]
}