-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (104 loc) · 3.87 KB
/
package.json
File metadata and controls
105 lines (104 loc) · 3.87 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
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"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",
"license": "MIT",
"author": {
"name": "Nevware21",
"email": "github@nevware21.com"
},
"keywords": [
"typescript",
"javascript",
"es5",
"es6",
"debug"
],
"main": "dist/es5/umd/ts-debug.js",
"module": "dist-es5/index.js",
"esnext": "dist-es6/index.js",
"types": "types/ts-debug.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nevware21/ts-debug.git"
},
"bugs": {
"url": "https://github.com/nevware21/ts-debug/issues"
},
"sideEffects": false,
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/ts-debug/blob/main/LICENSE"
}
],
"scripts": {
"build": "grunt ts_debug --verbose && npm run package && npm run dtsgen",
"rebuild": "npm run build && npm run test",
"package": "rollup -c rollup.config.js --bundleConfigAsCjs",
"test": "grunt ts_debug-test && npm run test:node && npm run test:worker && npm run test:browser && npm run coverage:report",
"test:node": "nyc ts-mocha -p ./test/tsconfig.test.json ./test/src/**/*.test.ts",
"test:browser": "karma start karma.browser.conf.js --single-run",
"test:worker": "karma start karma.worker.conf.js --single-run",
"debug:browser": "karma start karma.debug.browser.conf.js --watch",
"debug:worker": "karma start karma.debug.worker.conf.js --watch",
"lint": "grunt ts_debug-lint",
"coverage:report": "npm run coverage:nyc && npm run coverage:merge",
"coverage:nyc": "nyc report --reporter=json",
"coverage:merge": "node ../tools/coverage/merge-coverage.js",
"codecov": "npm run coverage:report && codecov -f coverage/*.json --disable=gcov",
"clean": "git clean -xdf && npm install",
"cleanBuild": "npm run clean && npm run rebuild && npm run docs",
"docs": "npx typedoc",
"rush-update": "rush update --recheck --purge --full",
"dtsgen": "api-extractor run --local --verbose",
"npm-pack": "npm pack"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.9.4 < 2.x"
},
"peerDependencies": {
"typescript": ">=1"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.34.4",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-strip": "^3.0.2",
"@rollup/plugin-typescript": "^11.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.1",
"@types/sinon": "^10.0.11",
"cross-env": "^7.0.3",
"chai": "^4.3.6",
"chromium": "^3.0.3",
"codecov": "^3.8.3",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"karma": "^6.3.20",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-webworker": "^1.3.0",
"karma-rollup-preprocessor": "^7.0.8",
"karma-spec-reporter": "^0.0.36",
"karma-typescript": "^5.5.3",
"karma-coverage": "^2.2.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"puppeteer": "^24.27.0",
"rollup": "^3.8.1",
"rollup-plugin-minify-es": "^1.1.1",
"rollup-plugin-istanbul": "^4.0.0",
"rollup-plugin-cleanup": "^3.2.1",
"sinon": "^15.0.0",
"ts-mocha": "^10.0.0",
"typedoc": "^0.24.5",
"typescript": "^4.9.5",
"uglify-js": "^3.15.5",
"copyfiles": "^2.4.1"
}
}