forked from ayasuda/hello_vuejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.08 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
{
"name": "hello_vuejs",
"version": "1.0.0",
"description": "sample source code and simpe product of Vue.js",
"main": "index.js",
"scripts": {
"build": "gulp build",
"test": "gulp test"
},
"author": {
"name": "Atsushi Yasuda",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"vue": "^2.0.7"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-runtime": "^6.2.0",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"gulp": "^3.9.0",
"gulp-karma": "0.0.5",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6",
"vinyl-source-stream": "^1.1.0",
"vue": "^2.0.7",
"vue-hot-reload-api": "^1.2.1",
"vueify": "^9.2.4",
"vueify-insert-css": "^1.0.0"
},
"browserify": {
"transform": [
"vueify",
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}