-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.05 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
{
"name": "dts-bundle-append",
"version": "0.0.2",
"description": "Append custom d.ts files into d.ts file bundle by dts-bundle.",
"keywrods": [
"dts-bundle",
"typescript",
"types",
"definitelyTyped",
"append",
"bundle",
"d.ts"
],
"main": "dist/append.js",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"prepublish": "npm run build"
},
"author": "Giedrius Grabauskas <giedrius@quatrodev.com> (https://github.com/GiedriusGrabauskas)",
"bugs": "https://github.com/QuatroCode/dts-bundle-append/issues",
"repository": "QuatroCode/dts-bundle-append",
"homepage": "https://github.com/QuatroCode/dts-bundle-append",
"license": "GPL-3.0",
"files": [
"dist",
"*.md",
"LICENSE"
],
"bin": {
"dts-bundle-append": "./dist/cli.js"
},
"devDependencies": {
"@types/yargs": "0.0.28",
"@types/glob": "^5.0.29",
"@types/node": "^6.0.31",
"typescript": "^2.0.0"
},
"dependencies": {
"glob": "^7.0.5",
"yargs": "^4.8.1"
},
"engines": {
"node": ">=6.0.0"
}
}