This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
forked from usystems/vuejs-typescript-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 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-ts-component",
"version": "0.1.3",
"description": "This package contains utilities to create vue components that look like classes. The code is is based on https://github.com/usystems/vuejs-typescript-component. The modifications include a few renamings and extensions for vue-router. Note that this code relies on the decorator feature of typescript to perform the conversions. At the time of writing, (July 2016), this feature is marked experimental and requires a special compiler flag.",
"main": "./dist/vue-ts-component.js",
"typings": "./src/vue-ts-component.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"test": "npm-run-all prepare",
"watchify": "watchify -vd -p [ tsify --debug --noImplicitAny ] -p browserify-hmr -e examples/main.ts -o examples/build.js",
"serve": "http-server ./examples -c 1 -a localhost",
"prepare": "tsc -p dist_config/tsconfig.json",
"start": "npm-run-all --parallel watchify serve"
},
"keywords": [
"vue-ts-component"
],
"contributors": [
"Lukas Gamper",
"Marcus Handte",
"Stephan Wagner"
],
"license": "MIT",
"browserify": {
"transform": [
"vueify",
"babelify"
]
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.2.0",
"browserify-hmr": "^0.3.1",
"http-server": "^0.9.0",
"npm-run-all": "^3.0.0",
"tsify": "^1.0.3",
"typescript": "^1.8.10",
"vue": "^1.0.26",
"vueify": "^8.5.2",
"watchify": "^3.7.0"
}
}