forked from vytenisu/npm-dts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.28 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
86
{
"name": "@htho/npm-dts",
"version": "1.5.1",
"description": "Simple DTS single-file generation utility for TypeScript bundles",
"main": "dist/index.js",
"bin": {
"npm-dts": "cli.js"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run build && npm run fix && npm run test && npm run docs && npm run dts",
"test": "jest --forceExit --detectOpenHandles",
"testSync": "jest --runInBand --forceExit --detectOpenHandles",
"lint": "tslint -c ./tslint.json -p ./tsconfig.json -t stylish ./lib/**/*.ts",
"build": "webpack",
"buildDev": "webpack --config webpack.config.dev.js",
"docs": "typedoc --out ./docs --readme ./README.md --exclude **/*.test.* --excludePrivate --excludeProtected --excludeExternals --darkHighlightTheme dark-plus --hideGenerator ./index.ts",
"dts": "npm run exec",
"exec": "node ./cli.js generate",
"fix": "node ./scripts/fixCliLineEndings.js"
},
"homepage": "https://github.com/htho/npm-dts",
"bugs": {
"url": "https://github.com/htho/npm-dts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/htho/npm-dts.git"
},
"keywords": [
"NPM",
"dts",
"cli",
"package",
"ts",
"TypeScript",
"tsc",
"index.d.ts",
"single",
"file",
"bundle",
"concatenate",
"simple",
"auto",
"generator",
"vytenis",
"urbonavicius",
"vytenisu",
"WhiteTurbine",
"Whitend"
],
"author": {
"name": "Vytenis Urbonavičius",
"url": "https://github.com/vytenisu"
},
"license": "MIT",
"devDependencies": {
"@types/args": "5.0.0",
"@types/copyfiles": "^2.4.1",
"@types/jest": "28.1.3",
"@types/mkdirp": "1.0.2",
"@types/rimraf": "3.0.2",
"@types/tmp": "0.2.3",
"@types/winston": "2.4.4",
"jest": "28.1.1",
"license-webpack-plugin": "4.0.2",
"ts-jest": "28.0.5",
"ts-loader": "9.3.1",
"ts-node": "10.8.1",
"tslint": "6.1.3",
"typedoc": "0.22.17",
"typescript": "4.7.4",
"webpack": "5.73.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
},
"dependencies": {
"args": "5.0.3",
"copyfiles": "^2.4.1",
"find-node-modules": "2.1.3",
"mkdirp": "1.0.4",
"npm-run": "5.0.1",
"rimraf": "3.0.2",
"tmp": "0.2.1",
"winston": "3.7.2"
}
}