-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
58 lines (58 loc) · 1.91 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
{
"private": true,
"name": "dts-bundle-generator",
"version": "9.5.1",
"description": "DTS Bundle Generator",
"main": "dist/bundle-generator.js",
"typings": "dist/bundle-generator.d.ts",
"bin": "dist/bin/dts-bundle-generator.js",
"files": [
"config-schema.d.ts",
"dist/**/*.d.ts",
"dist/**/*.js"
],
"author": "Evgeniy Timokhov",
"bugs": {
"url": "https://github.com/timocov/dts-bundle-generator/issues"
},
"homepage": "https://github.com/timocov/dts-bundle-generator",
"dependencies": {
"typescript": ">=5.0.2",
"yargs": "^17.6.0"
},
"devDependencies": {
"@types/mocha": "~10.0.0",
"@types/node": "~14.18.26",
"@types/yargs": "~17.0.13",
"@typescript-eslint/eslint-plugin": "~7.4.0",
"@typescript-eslint/parser": "~7.4.0",
"eslint": "~8.57.0",
"eslint-plugin-deprecation": "~2.0.0",
"eslint-plugin-import": "~2.29.0",
"eslint-plugin-unicorn": "~51.0.1",
"mocha": "~10.4.0",
"npm-run-all": "~4.1.5",
"rimraf": "~5.0.1",
"ts-compiler": "npm:[email protected]",
"ts-node": "~10.9.1"
},
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/dts-bundle-generator.git"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "rimraf dist/ dts-out/",
"lint": "eslint --format=unix ./",
"check-dts-config": "node ./node_modules/ts-compiler/bin/tsc -p tsconfig.dts-config.json",
"bundle-dts": "npm run check-dts-config && node ./dist/bin/dts-bundle-generator.js --config dts-config.js --silent",
"tsc": "node ./node_modules/ts-compiler/bin/tsc --version && node ./node_modules/ts-compiler/bin/tsc -b ./tsconfig.json",
"verify": "npm-run-all clean tsc -p bundle-dts lint -s test",
"prepare-release": "npm-run-all clean tsc bundle-dts && node scripts/clean-package-json.js",
"test": "mocha --recursive -p --reporter list tests/"
}
}