-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "vue-jsx-hot-loader",
"description": "Webpack loader for Vue.js components with JSX render functions",
"version": "1.4.3",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "eslint --ext .js,.jsx . && jest",
"playground": "cd playground && poi --config poi.config.js"
},
"keywords": [
"webpack",
"vue",
"loader",
"jsx",
"hot"
],
"repository": {
"type": "git",
"url": "git+https://github.com/skyrpex/vue-jsx-hot-loader.git"
},
"author": "cristian@pallares.io",
"license": "MIT",
"dependencies": {
"hash-sum": "^1.0.2",
"lodash": "^4.17.10",
"serialize-javascript": "^3.1.0"
},
"devDependencies": {
"@babel/core": "^7.0.0-beta.49",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-stage-0": "^7.0.0-beta.49",
"@skyrpex/eslint-config-base": "^1.0.0-4",
"@skyrpex/eslint-config-jest": "^1.0.0-4",
"@skyrpex/eslint-config-vue": "^1.0.0-4",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"eslint": "^4.19.1",
"jest": "^23.2.0",
"np": "^3.0.4",
"poi": "^10.2.9",
"vue": "^2.5.16",
"vue-hot-reload-api": "^2.3.0"
},
"peerDependencies": {
"vue": "^2.0.0",
"vue-hot-reload-api": "^2.0.0"
},
"engines": {
"node": ">5.12"
}
}