-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 KB
/
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
{
"name": "@fua/core.is",
"version": "1.0.7",
"description": "The \"is\" module offers methods to confirm the type of a value. It can be used to validate arguments, differentiate inputs or filter values.",
"exports": {
".": "./src/is.js",
"./array": "./src/is.array.js",
"./boolean": "./src/is.boolean.js",
"./date": "./src/is.date.js",
"./function": "./src/is.function.js",
"./number": "./src/is.number.js",
"./object": "./src/is.object.js",
"./string": "./src/is.string.js",
"./symbol": "./src/is.symbol.js",
"./typedarray": "./src/is.typedarray.js"
},
"files": [
"src/*"
],
"devDependencies": {
"expect": "26.x",
"mocha": "10.x"
},
"scripts": {
"test": "mocha"
},
"mocha": {
"bail": false,
"recursive": false,
"spec": "test/*.test.js"
},
"repository": {
"type": "git",
"url": "ssh://[email protected]:nicosResearchAndDevelopment/fua.core.is.git"
},
"author": "Simon Petrac <[email protected]>",
"license": "MIT"
}