forked from nomaed/dts-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@skymakerolof/dts-builder",
"version": "1.1.8",
"description": "Generates a definition library file from generated .d.ts sources",
"main": "dist/index.js",
"types": "dts-builder.d.ts",
"scripts": {
"clean": "rm -rf dist test-out",
"prepublish": "npm run build && npm run test",
"build": "npm run lint && tsc && node ./dist/generate-self",
"lint": "tslint --project tsconfig.json --config tslint.json --format verbose",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomaed/dts-builder.git"
},
"keywords": [
"dts",
"typescript",
"library",
"generate"
],
"author": "Boris Aranovich <nomaed@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nomaed/dts-builder/issues"
},
"homepage": "https://github.com/nomaed/dts-builder#readme",
"dependencies": {
"mkdirp": "^0.5.1"
},
"devDependencies": {
"@types/mkdirp": "^0.3.29",
"@types/node": "^7.0.5",
"tslint": "^4.4.2",
"typescript": "^2.2.0"
}
}