This repository was archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.49 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.49 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "vue-typescript-component-example",
"version": "0.1.0",
"description": "Example project for Vue.js and TypeScript using vueify and vue-typescript-component",
"author": "Locoslab GmbH",
"homepage": "https://github.com/locoslab/vue-typescript-component-example",
"bugs": "https://github.com/locoslab/vue-typescript-component-example/issues",
"repository": "locoslab/vue-typescript-component-example",
"private": true,
"license": "Unlicense",
"files": [
"dist"
],
"keywords": [
"vue",
"vueify",
"typescript",
"pug",
"jest"
],
"scripts": {
"watchify": "mkdirp debug && watchify -vd -p tsify -p browserify-hmr -e src/index.ts -o debug/index.js",
"serve": "http-server -c 1 -a localhost -o",
"start": "npm-run-all --parallel watchify serve",
"mkdist": "mkdirp dist && rplcr index.html -f debug/ -o dist/index.html && cross-env NODE_ENV=production browserify -g envify -p tsify -p [ vueify/plugins/extract-css -o dist/index.css ] -e src/index.ts | uglifyjs -c warnings=false -m > dist/index.js",
"dist": "npm-run-all --silent lint 'test -- --no-cache' mkdist",
"test": "jest",
"lint": "tslint src/**/*.ts test/**/*.ts"
},
"jest": {
"transform": {
".*\\.(ts|vue)$": "<rootDir>/node_modules/vue-typescript-jest/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js",
"vue"
],
"testRegex": "/test/.*\\.(ts|js)$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/.*\\.(ts|js)$",
"/.*\\.vue$"
]
},
"devDependencies": {
"@types/jest": "^16.0.0",
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-runtime": "^6.0.0",
"browserify": "^13.1.0",
"browserify-hmr": "^0.3.1",
"cross-env": "^3.1.2",
"envify": "^4.0.0",
"html2jade": "^0.8.5",
"http-server": "^0.9.0",
"jest-cli": "^18.0.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.0.0",
"pug": "^2.0.0-beta5",
"rplcr": "^0.2.2",
"tsify": "^3.0.0",
"tslint": "^4.2.0",
"tslint-config-locoslab": "^1.0.0",
"typescript": "^2.1.4",
"uglify-js": "^2.5.0",
"vue": "^2.1.8",
"vue-jest-utils": "^0.2.0",
"vue-typescript-component": "^0.6.1",
"vue-typescript-import-dts": "^2.0.0",
"vue-typescript-jest": "^0.3.0",
"vueify": "^9.4.0",
"watchify": "^3.4.0"
},
"browserify": {
"transform": [
"vueify"
]
},
"babel": {
"presets": [
"es2015"
]
}
}