-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·62 lines (62 loc) · 1.54 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
{
"name": "@vip30/vue-phoenix",
"version": "0.2.0",
"scope": "@vip30",
"description": "Vue-Phoenix is a Phoenix integration for Vuejs.",
"main": "dist/index.umd.js",
"module": "dist/index.js",
"keywords": [
"vue",
"phoenix",
"typescript"
],
"author": "vip30",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -p src/tsconfig.json && rollup -c",
"cover": "jest --coverage --no-cache",
"format": "prettier --write '**/*.ts' ",
"release": "sh release.sh",
"test": "jest --no-cache --watchAll"
},
"files": [
"dist",
"types"
],
"types": "types/index.d.ts",
"devDependencies": {
"@types/jest": "^23.3.13",
"@types/node": "^8.0.47",
"@vue/test-utils": "^1.0.0-beta.28",
"codecov": "^3.0.2",
"jest": "^23.6",
"prettier": "^1.10.2",
"prettier-tslint": "^0.3.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^23.10.5",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.0",
"vue": "^2.5.22",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.5.13"
},
"dependencies": {
"@types/phoenix": "0.0.4",
"phoenix": "^1.4.0",
"vue-class-component": "^6.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vip30/vue-phoenix.git"
},
"bugs": {
"url": "https://github.com/vip30/vue-phoenix.git/issues"
},
"homepage": "https://github.com/vip30/vue-phoenix.git#readme"
}