forked from arshaw/dts-bundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.64 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
{
"name": "@qiwi/dts-bundle",
"version": "0.7.5",
"private": false,
"publishConfig": {
"access": "public"
},
"description": "Export TypeScript .d.ts files as an external module definition",
"scripts": {
"docs": "mkdir -p docs && cp ./README.md ./docs/README.md",
"build": "npm run docs",
"test": "grunt test",
"postupdate": "npm i && npm shrinkwrap && npm audit fix && npm run test"
},
"keywords": [
"typescript",
"definition",
"bundle",
"export",
"d.ts"
],
"bin": {
"dts-bundle": "./lib/dts-bundle.js"
},
"homepage": "https://github.com/qiwi-forks/dts-bundle",
"repository": {
"type": "git",
"url": "https://github.com/qiwi-forks/dts-bundle.git"
},
"author": {
"name": "Bart van der Schoor",
"url": "https://github.com/Bartvds"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/qiwi-forks/dts-bundle/master/LICENSE-MIT.txt"
}
],
"bugs": {
"url": "https://github.com/qiwi-forks/dts-bundle/issues"
},
"engines": {
"node": ">= 12"
},
"main": "./index.js",
"dependencies": {
"@types/glob": "7.1.3",
"@types/mkdirp": "1.0.1",
"@types/node": "14.14.35",
"commander": "^7.1.0",
"detect-indent": "^6.0.0",
"glob": "^7.1.6",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-fs": "2.0.0",
"grunt": "1.3.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-mocha-cli": "^7.0.0",
"grunt-mocha-test": "^0.13.3",
"grunt-ts": "^6.0.0-beta.22",
"jshint-path-reporter": "^0.1.3",
"ncp": "^2.0.0",
"typescript": "^4.2.3"
}
}