-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.18 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
{
"name": "variable-type",
"version": "1.0.0",
"description": "Runtime type checking for variable and similar objects.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest --coverage",
"perf": "ts-node perf/benchmark.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hustcc/variable-type.git"
},
"keywords": [
"variable-type",
"var-type",
"prop-types",
"check-type",
"type-checking"
],
"author": "hustcc",
"license": "MIT",
"bugs": {
"url": "https://github.com/hustcc/variable-type/issues"
},
"homepage": "https://github.com/hustcc/variable-type#readme",
"devDependencies": {
"@types/benchmark": "^1.0.31",
"@types/jest": "^24.0.25",
"@types/prop-types": "^15.7.3",
"benchmark": "^2.1.4",
"jest": "^24.9.0",
"prop-types": "^15.5.10",
"ts-jest": "^24.3.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"jest": {
"roots": [
"tests"
],
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coveragePathIgnorePatterns": [
"src/*.d.ts"
]
}
}