-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.33 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
{
"name": "js-validate-type",
"description": "Validate type in javascript at runtime",
"version": "1.1.1",
"license": "MIT",
"scripts": {
"test": "jest",
"test-cov": "jest --coverage --runInBand --forceExit",
"show-test": "yarn run test-cov && open-cli ./coverage/lcov-report/index.html",
"lint": "eslint src",
"build": "babel --extensions .ts,.tsx -d build src/*.ts",
"build-type": "tsc",
"prepublish": "npm run build && tsc"
},
"keywords": [
"validation",
"validate",
"valid",
"type validate"
],
"author": "Nguyễn Chí Thanh",
"repository": {
"type": "git",
"url": "git+https://github.com/thanhngch/js-validate-type.git"
},
"engines": {
"node": ">=8"
},
"files": [
"build"
],
"main": "build/type.js",
"types": "build/type.d.ts",
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"eslint": "^7.10.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"esm": "^3.2.25",
"jest": "^29.7.0",
"open-cli": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}