-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.79 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@tsdotnet/type",
"version": "1.0.14",
"description": "A set of useful utility functions for JavaScript run-time type checking and inspection.",
"author": "electricessence",
"license": "MIT",
"types": "dist/type.d.ts",
"main": "dist/type.js",
"module": "dist-esm/type.js",
"keywords": [
"typeof",
"primitive",
"property",
"member",
"type check",
"type checking",
"has member",
"has member of"
],
"scripts": {
"build:dist": "rimraf dist/* && tsc && copyfiles -u 1 src/**/*.d.ts dist",
"build:dist-esm": "rimraf dist-esm/* && tsc -p tsconfig.esm.json",
"build": "pnpm i && pnpm run build:dist && pnpm run build:dist-esm",
"bump": "npm run-script precommit && npm version patch",
"docs": "rimraf docs/* && typedoc --options typedoc.json --readme none",
"lint": "eslint src/**/*.ts",
"precommit": "pnpm i && run-p lint test && run-p build:* && npm run-script validate && git status -s",
"prepublishOnly": "npm run-script build && run-p validate test",
"preversion": "run-p lint test",
"postversion": "git push && git push --tags && npm run-script docs && git add -A && git commit -m \"Updated docs.\" docs && git push",
"test": "mocha -r ts-node/register tests/**/*.ts",
"validate": "node ./.build/validate-package.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tsdotnet/type.git"
},
"bugs": {
"url": "https://github.com/tsdotnet/type/issues"
},
"homepage": "https://github.com/tsdotnet/type#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"chai": "^4.3.7",
"copyfiles": "^2.4.1",
"eslint": "^8.30.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.9.4"
},
"dependencies": {
"@tsdotnet/common-interfaces": "^1.0.4",
"tslib": "^2.4.1"
},
"pnpm": {
"overrides": {
"hosted-git-info@<2.8.9": ">=2.8.9",
"y18n@=4.0.0": ">=4.0.1",
"lodash@<4.17.20": ">=4.17.20",
"shell-quote@<=1.7.2": ">=1.7.3",
"lodash@<4.17.21": ">=4.17.21",
"json5@<1.0.2": ">=1.0.2",
"json5@>=2.0.0 <2.2.2": ">=2.2.2",
"minimatch@<3.0.5": ">=3.0.5",
"semver@<5.7.2": ">=5.7.2",
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"get-func-name@<2.0.1": ">=2.0.1",
"@babel/traverse@<7.23.2": ">=7.23.2",
"braces@<3.0.3": ">=3.0.3"
}
}
}