-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (92 loc) · 3.13 KB
/
package.json
File metadata and controls
93 lines (92 loc) · 3.13 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@nevware21/ts-debug",
"description": "Provides helper functions to support adding configurable debugging logging and support to your application or libraries.",
"version": "0.1.0",
"homepage": "https://github.com/nevware21/ts-debug",
"sideEffects": false,
"license": "MIT",
"author": {
"name": "Nevware21",
"email": "github+ts_debug@nevware21.com"
},
"keywords": [
"typescript",
"javascript",
"es5",
"es6",
"debug"
],
"main": "dbg/dist/es5/umd/ts-debug.js",
"module": "dbg/dist-es5/index.js",
"esnext": "dbg/dist-es6/index.js",
"types": "dbg/types/index.d.ts",
"scripts": {
"postinstall": "node common/scripts/install-run-rush.js update",
"build": "rush build",
"rebuild": "rush rebuild",
"test": "rush test",
"lint": "grunt ts_debug-lint",
"coverage:report": "rush coverage:report",
"coverage:merge": "rush coverage:merge",
"clean": "git clean -xdf && npm install",
"cleanBuild": "npm run clean && npm run rebuild && npm run docs",
"docs": "rush docs",
"rush-update": "rush update --recheck --purge --full",
"test:browser": "rush test:browser",
"test:node": "rush test:node",
"test:worker": "rush test:worker",
"debug:browser": "cd dbg && npm run debug:browser",
"debug:worker": "cd dbg && npm run debug:worker",
"prep-release": "npm run cleanBuild && npm run npm-pack",
"npm-pack": "copyfiles README.md LICENSE dbg && copyfiles README.md LICENSE providers && rush npm-pack",
"npm-publish": "publish-npm"
},
"repository": {
"type": "git",
"url": "https://github.com/nevware21/ts-debug.git"
},
"bugs": {
"url": "https://github.com/nevware21/ts-debug/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/ts-debug/blob/main/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.12.6 < 2.x"
},
"peerDependencies": {
"typescript": ">=1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@microsoft/rush": "5.169.3",
"@nevware21/grunt-eslint-ts": "0.5.2",
"@nevware21/grunt-ts-plugin": "0.5.2",
"@nevware21/coverage-tools": ">= 0.1.4 < 2.x",
"@nevware21/publish-npm": ">= 0.1.4 < 2.x",
"@types/eslint": "^8.4.2",
"@types/estree": "^1.0.0",
"@types/node": "^25.0.3",
"@types/mocha": "^10.0.1",
"@types/sinon": "^21.0.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^8.16.0",
"eslint-plugin-security": "^1.5.0",
"eslint-formatter-codeframe": "^7.32.1",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"typedoc": "^0.28.15",
"typedoc-github-theme": "^0.4.0",
"typescript": "~5.2.2",
"nyc": "^18.0.0",
"codecov": "^3.8.3",
"copyfiles": "^2.4.1"
}
}