-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.97 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@typeguards/core",
"version": "1.1.0",
"description": "Runtime type checking library for TS & JS",
"keywords": [
"type-guard",
"type-checking",
"type-validation",
"runtime-type",
"runtime-typechecking",
"runtime-type-checking",
"runtime-type-validation"
],
"author": "Lchemist",
"license": "Apache-2.0",
"homepage": "https://github.com/Lchemist/TypeGuards",
"repository": {
"type": "git",
"url": "git+https://github.com/Lchemist/TypeGuards.git"
},
"files": [
"lib",
"esm",
"umd"
],
"main": "lib/index.js",
"module": "esm/index.js",
"jsnext:main": "esm/index.js",
"unpkg": "umd/index.js",
"scripts": {
"prepare": "husky install",
"lint": "eslint --fix --ext ts,js .",
"test": "jest --config .jestrc.js",
"prebuild": "rimraf tsconfig.tsbuildinfo tsconfig.*.tsbuildinfo lib esm umd",
"build": "tsc -b && tsc -b ./tsconfig.esm.json && tsc -b ./tsconfig.umd.json",
"release": "semantic-release"
},
"engines": {
"node": ">=10",
"npm": ">=5.2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"commitizen": "^4.2.3",
"cz-cc": "^1.0.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.7",
"ts-jest": "^26.5.3",
"typescript": "^4.1.5"
}
}