-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.83 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.83 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "wirecheck",
"version": "1.1.0",
"description": "A JavaScript/Typescript library for fast type checking. Check if a given value is a string, number, object, ...",
"author": "WireCore <info@wirecore.net> (https://wirecore.net)",
"homepage": "https://github.com/WireCore/wirecheck",
"contributors": [
"Dennis Grosch (https://github.com/groschi24)"
],
"repository": "WireCore/wirecheck",
"bugs": {
"url": "https://github.com/WireCore/wirecheck/issues"
},
"license": "MIT",
"main": "lib/wirecheck.js",
"types": "lib/wirecheck.d.ts",
"files": [
"lib/wirecheck.d.ts",
"lib/wirecheck.js",
"lib/wirecheck.js.map"
],
"watch": {
"build": {
"patterns": [
"src"
],
"extensions": "js,ts",
"quiet": true,
"legacyWatch": true
}
},
"scripts": {
"compile": "tsc",
"clear": "rimraf build/compiled/*",
"make-bundle": "rollup --config",
"build": "run-s clear compile make-bundle",
"watch": "npm-watch",
"test": "mocha -r ts-node/register 'tests/**/*.ts'",
"prepare": "husky install"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.3",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0",
"rimraf": "^3.0.2",
"rollup": "^2.76.0",
"rollup-plugin-dts": "^4.2.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"keywords": [
"type",
"typeof",
"Number",
"num",
"Date",
"numeric",
"math",
"string",
"check",
"finite",
"integer",
"float",
"isnan",
"isNumber",
"is-number",
"isfinite",
"parseFloat",
"parseInt",
"test",
"regex",
"parse",
"is"
]
}