This repository has been archived by the owner on Aug 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.74 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vue-twitter",
"description": "twitter widgets for Vue.js",
"version": "0.1.0",
"author": "+v <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chiaweilee/vue-twitter.git"
},
"main": "./lib/index.js",
"module": "src/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"build": "cross-env NODE_ENV=production webpack --config ./build/webpack.release.js --progress --hide-modules",
"build-watch": "cross-env NODE_ENV=production webpack --config ./build/webpack.release.js --progress --hide-modules --watch",
"release": "npm run build",
"es5": "babel src --presets babel-preset-es2015 --out-dir lib",
"lint": "eslint --ext .js,.vue src example --fix"
},
"keywords": [],
"dependencies": {
"vue-script2": "^2.0.3"
},
"devDependencies": {
"animejs": "^2.0.2",
"autoprefixer": "^7.1.3",
"babel-cli": "^6.23.0",
"babel-core": "^6.0.0",
"babel-eslint": "^8.2.3",
"babel-loader": "^6.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.0.0",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"cross-env": "^3.0.0",
"css-loader": "^0.25.0",
"es6-object-assign": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "^0.9.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"hammerjs": "^2.0.8",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^2.5.3",
"jasmine-core": "^2.5.2",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-requirejs": "^1.1.0",
"mocha": "^3.2.0",
"node-sass": "^4.5.0",
"postcss-loader": "^2.1.5",
"requirejs": "^2.3.3",
"sass-loader": "^6.0.7",
"shortid": "^2.2.8",
"style-loader": "^0.18.2",
"transform-runtime": "^0.0.0",
"vue": "^2.5.16",
"vue-loader": "^11.0.0",
"vue-style-loader": "^3.0.3",
"vue-template-compiler": "^2.2.1",
"webpack": "^2.2.0",
"webpack-bundle-analyzer": "^2.3.1",
"webpack-dev-server": "^2.2.0"
}
}