-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "vuetype",
"version": "0.3.2",
"author": "katashin",
"description": "Generate TypeScript declaration files for .vue files",
"keywords": [
"Vue",
"TypeScript",
"declaration",
"type",
"cli"
],
"license": "MIT",
"files": [
"dist"
],
"main": "dist/lib/api.js",
"typings": "dist/lib/api.d.ts",
"homepage": "https://github.com/ktsn/vuetype",
"bugs": "https://github.com/ktsn/vuetype/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vuetype.git"
},
"bin": {
"vuetype": "dist/bin/vuetype.js"
},
"scripts": {
"prepublishOnly": "npm run lint && npm run test && npm run clean && npm run build",
"clean": "rimraf dist",
"dev": "tsc -p src -w",
"build": "tsc -p src",
"lint": "tslint \"src/**/*.ts\" && tslint \"test/specs/**/*.ts\"",
"test": "rimraf test/fixtures/*.d.ts && mocha --require espower-typescript/guess test/specs/**/*.ts",
"test:debug": "npm t -- --inspect --debug-brk --recursive"
},
"devDependencies": {
"@types/chokidar": "^1.7.4",
"@types/commander": "^2.12.2",
"@types/glob": "^5.0.35",
"@types/memory-fs": "^0.3.0",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.0",
"@types/power-assert": "1.4.29",
"@types/rimraf": "2.0.2",
"espower-typescript": "^8.1.3",
"memory-fs": "^0.4.1",
"mocha": "^5.0.0",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"tslint": "^5.9.1",
"tslint-config-ktsn": "^2.1.0",
"vue": "^2.5.13",
"vue-class-component": "^6.1.2"
},
"dependencies": {
"chalk": "^2.3.0",
"chokidar": "^2.0.0",
"commander": "^2.13.0",
"glob": "^7.1.2",
"typescript": "2.7.1",
"vue-template-compiler": "^2.5.13"
}
}