forked from ktsn/vue-template-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 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
{
"name": "vue-tpl-loader",
"version": "1.0.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/quteam/vue-tpl-loader.git"
},
"keywords": [
"vue.js",
"webpack",
"template",
"loader"
],
"author": "katashin",
"license": "MIT",
"bugs": {
"url": "https://github.com/quteam/vue-tpl-loader/issues"
},
"homepage": "https://github.com/quteam/vue-tpl-loader#readme",
"scripts": {
"examples": "./examples/build.sh",
"lint": "eslint lib test",
"test": "npm run lint && jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"prepublishOnly": "npm run test"
},
"dependencies": {
"hash-sum": "^1.0.2",
"loader-utils": "^1.1.0",
"postcss": "^6.0.22",
"postcss-selector-parser": "^3.1.1",
"source-map": "^0.6.1",
"vue-hot-reload-api": "^2.3.0",
"vue-template-es2015-compiler": "^1.6.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-register": "^6.26.0",
"css-loader": "^0.28.8",
"eslint": "^4.15.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-ktsn": "^1.0.3",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.30.1",
"jasmine": "^2.8.0",
"js-base64": "^2.4.0",
"node-sass": "^4.9.0",
"pug-html-loader": "^1.1.5",
"require-from-string": "^2.0.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"ts-loader": "^3.2.0",
"typescript": "^2.6.2",
"vue": "^2.5.16",
"vue-class-component": "^6.2.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.10.0"
},
"peerDependencies": {
"vue-template-compiler": "^2.5.16"
}
}