-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 959 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 959 Bytes
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
{
"name": "is-defined-type",
"version": "1.2.1",
"description": "Check if a variable in a nested object is defined and optionally also check its type. Useful for verifying API responses.",
"main": "is-defined-type.js",
"scripts": {
"test": "node test/run-tests.js",
"prepublishOnly": "uglifyjs is-defined-type.js -m -c -o dist/is-defined-type.min.js --source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basbase/is-defined-type.git"
},
"keywords": [
"check",
"undefined",
"defined",
"deeply",
"nested",
"object",
"type"
],
"author": "basbase",
"license": "MIT",
"bugs": {
"url": "https://github.com/basbase/is-defined-type/issues"
},
"homepage": "https://github.com/basbase/is-defined-type#readme",
"unpkg": "dist/is-defined-type.min.js",
"devDependencies": {
"tape": "^4.8.0"
},
"directories": {
"test": "test"
},
"dependencies": {}
}