forked from timocov/dts-bundle-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.96 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": "6.11.0",
"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": ">=3.0.1",
"yargs": "^17.2.1"
},
"devDependencies": {
"@types/mocha": "~9.0.0",
"@types/node": "~12.12.47",
"@types/yargs": "~17.0.5",
"@typescript-eslint/eslint-plugin": "~5.3.1",
"@typescript-eslint/parser": "~5.3.1",
"eslint": "~8.2.0",
"eslint-plugin-import": "~2.25.2",
"eslint-plugin-prefer-arrow": "~1.2.1",
"eslint-plugin-unicorn": "~37.0.1",
"mocha": "~9.1.3",
"npm-run-all": "~4.1.5",
"rimraf": "~3.0.2",
"ts-compiler": "npm:[email protected]",
"ts-node": "~10.4.0"
},
"license": "MIT",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/timocov/dts-bundle-generator.git"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"clean": "rimraf dist/ dts-out/",
"lint": "eslint --format=unix --ext .ts ./",
"check-dts-config": "node ./node_modules/ts-compiler/bin/tsc --lib es2015 --allowJs --noEmit ./dts-config.js",
"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 tests/unittests/**/*.spec.ts tests/e2e/all-test-cases.ts"
}
}