forked from itsfrank/vue-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.25 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": "vue-typescript",
"version": "0.6.1",
"description": "Typescript decorators to make vue play nice with typescript",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run clean && npm run build",
"test": "mocha",
"dev": "mocha -w",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf coverage && rm -rf built && rm -rf lib",
"cover": "tsc && istanbul cover node_modules/mocha/bin/_mocha built/test/**/*.js && remap-istanbul -i coverage/coverage.json -o coverage/html-report -t html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsFrank/vue-typescript.git"
},
"keywords": [
"vue",
"typescript",
"decorator"
],
"author": "Francis O'Brien",
"license": "MIT",
"bugs": {
"url": "https://github.com/itsFrank/vue-typescript/issues"
},
"homepage": "https://github.com/itsFrank/vue-typescript#readme",
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"mocha-clean": "^1.0.0",
"ts-node": "^0.9.3",
"typescript": "^1.8.10",
"typings": "^1.3.1"
},
"peerDependencies": {
"vue": "^1.0.26"
},
"typings": "lib/index",
"dependencies": {
"clone": "^1.0.2"
}
}