-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 829 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
37
38
39
40
{
"name": "type-of-is",
"version": "3.5.1",
"description": "Determine and test types using constructor or {}.toString",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/stephenhandley/type-of-is"
},
"bugs": {
"url": "http://github.com/stephenhandley/type-of-is/issues"
},
"scripts": {
"test": "./node_modules/.bin/mocha --no-timeouts --ui exports test/test.js"
},
"keywords": [
"type",
"types",
"typeof",
"toString",
"type.of",
"type.is"
],
"directories": {
"lib": ".",
"test": "test"
},
"engines": {
"node": ">=0.10.5"
},
"devDependencies": {
"mocha": "^3.2.0"
},
"author": {
"name": "Stephen Handley",
"email": "stephen.handley@gmail.com",
"url": "http://person.sh"
}
}