-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.52 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@propero/typescript-transform-vue-templates",
"version": "0.0.0",
"description": "Transform Vue template strings into render functions",
"since": "2020",
"main": "dist/main.cjs.js",
"module": "dist/main.esm.js",
"unpkg": "dist/main.js",
"types": "dist/main.d.ts",
"files": [
"dist",
"LICENSE.md",
"README.md"
],
"scripts": {
"build": "rollup -c rollup.config.js",
"clean": "rimraf dist temp docs coverage",
"test": "jest",
"test:watch": "jest --watchAll",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts --fix ."
},
"keywords": [
"vue",
"template",
"typescript",
"transformer",
"propero"
],
"author": "Propero Team <[email protected]>",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.8.4",
"@babel/types": "^7.8.3",
"@propero/typescript-transformer-source-templates": "^1.1.0",
"typescript": "^3.7.5",
"vue-template-compiler": "^2.6.11"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@microsoft/api-documenter": "^7.7.8",
"@microsoft/api-extractor": "^7.7.5",
"@rocketbase/rollup-plugin-api-extractor": "^1.0.3",
"@rocketbase/rollup-plugin-exec": "^1.0.1",
"@rocketbase/rollup-plugin-sequential": "^1.1.0",
"@semantic-release/changelog": "^3.0.6",
"@semantic-release/commit-analyzer": "^7.0.0",
"@semantic-release/git": "^8.0.0",
"@semantic-release/github": "^6.0.1",
"@semantic-release/npm": "^6.0.0",
"@semantic-release/release-notes-generator": "^7.3.5",
"@types/dotenv-flow": "^3.0.0",
"@types/jest": "^24.9.0",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.1",
"@types/webpack": "^4.41.6",
"@types/webpack-dev-server": "^3.10.0",
"@types/webpack-env": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"@wessberg/rollup-plugin-ts": "^1.2.17",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"dotenv-flow": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.3",
"jest": "^25.1.0",
"jest-preset-typescript": "^1.2.0",
"lint-staged": "^10.0.1",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rollup": "^1.29.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.5.0",
"rollup-plugin-ts-paths": "^1.0.3",
"semantic-release": "^16.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.6.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -g .commitlint.config.json -e -V"
}
},
"lint-staged": {
"*.{ts}": [
"eslint --ignore-path .gitignore --ext .ts ."
]
},
"publishConfig": {
"access": "public"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/propero-oss/typescript-transform-vue-templates.git"
},
"bugs": {
"url": "https://github.com/propero-oss/typescript-transform-vue-templates/issues"
},
"homepage": "https://github.com/propero-oss/typescript-transform-vue-templates#readme"
}