-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
70 lines (70 loc) · 1.83 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
{
"name": "vue-template-loader",
"version": "1.1.0",
"description": "Vue.js 2.0 template loader for webpack",
"main": "lib/template-loader.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ktsn/vue-template-loader.git"
},
"keywords": [
"vue.js",
"webpack",
"template",
"loader"
],
"author": "katashin",
"license": "MIT",
"bugs": {
"url": "https://github.com/ktsn/vue-template-loader/issues"
},
"homepage": "https://github.com/ktsn/vue-template-loader#readme",
"scripts": {
"examples": "./examples/build.sh",
"lint": "eslint lib test",
"test": "jest",
"test:watch": "jest --watch",
"test:snapshot": "jest --updateSnapshot",
"prepublishOnly": "npm run lint && npm run test"
},
"jest": {
"testRegex": "test/.*\\.spec\\.js$"
},
"dependencies": {
"@vue/component-compiler-utils": "^2.0.0",
"hash-sum": "^1.0.2",
"loader-utils": "^1.1.0",
"source-map": "^0.6.1",
"vue-hot-reload-api": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-ktsn": "^1.0.3",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.1.0",
"mini-css-extract-plugin": "^0.4.0",
"node-sass": "^4.9.0",
"pug-html-loader": "^1.1.5",
"require-from-string": "^2.0.2",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"ts-loader": "^4.4.1",
"typescript": "^2.9.2",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6"
},
"peerDependencies": {
"vue-template-compiler": "^2.0.0"
}
}