-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 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
{
"name": "vue-autoscroll",
"version": "1.2.1",
"description": "A vue js directive to scroll anywhere on a container",
"main": "dist/vue-autoscroll.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack",
"prod": "cross-env NODE_ENV=production webpack",
"build": "npm run dev && npm run prod",
"watch": "cross-env NODE_ENV=watch webpack-dev-server --open --hot",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donmbelembe/vue-autoscroll.git"
},
"keywords": [
"vue"
],
"author": "Don mbelembe",
"license": "MIT",
"bugs": {
"url": "https://github.com/donmbelembe/vue-autoscroll/issues"
},
"homepage": "https://github.com/donmbelembe/vue-autoscroll#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-standard": "^10.2.1",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"uglifyjs-webpack-plugin": "^0.4.6",
"vue": "^2.4.2",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
}
}