-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.19 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "is2",
"version": "2.0.9",
"description": "A type checking library where each exported function returns either true or false and does not throw. Also added tests.",
"license": "MIT",
"tags": [
"type",
"check",
"checker",
"checking",
"utilities",
"network",
"networking",
"credit",
"card",
"validation"
],
"keywords": [
"type",
"check",
"checker",
"checking",
"utilities",
"network",
"networking",
"credit",
"card",
"validation"
],
"author": "Enrico Marino <[email protected]>",
"maintainers": "Edmond Meinfelder <[email protected]>, Chris Oyler <[email protected]>",
"homepage": "http://github.com/stdarg/is2",
"repository": {
"type": "git",
"url": "[email protected]:stdarg/is2.git"
},
"bugs": {
"url": "http://github.com/stdarg/is/issues"
},
"main": "./index.js",
"scripts": {
"test": "./node_modules/.bin/mocha -C --reporter list tests.js"
},
"engines": {
"node": ">=v0.10.0"
},
"dependencies": {
"deep-is": "^0.1.3",
"ip-regex": "^4.1.0",
"is-url": "^1.2.4"
},
"devDependencies": {
"mocha": "6.2.3",
"mongodb": "3.2.4"
}
}