-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "vue-literal-compiler",
"version": "2.0.0",
"description": "Compile Vue Template Literals into Render Functions at build time.",
"main": "dist/index.js",
"scripts": {
"start": "tsc --watch",
"test:unit": "mocha -r ts-node/register test/unit/**/*.test.ts --reporter=min --watch --watch-extensions ts",
"start:unit": "concurrently -r --kill-others \"npm run start\" \"npm run test:unit\"",
"test:e2e": "cd test/e2e && npm run start",
"start:e2e": "concurrently -r --kill-others \"npm run start\" \"npm run test:e2e\""
},
"repository": {
"type": "git",
"url": "https://github.com/michaelolof/vue-literal-compiler"
},
"author": "michaelolof",
"license": "ISC",
"dependencies": {
"hyntax": "^1.0.7",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"@types/webpack": "^4.4.22",
"@vue/component-compiler-utils": "^2.3.1",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.1.2"
},
"peerDependencies": {
"webpack": "^4.1.0"
},
"keywords": [
"VueJs",
"Vue Literal Compiler",
"Template Literals",
"Single File Components",
"Vue + TypeScript",
"Vue TypeScript",
"TypeScript Vue",
"String Literals"
]
}