forked from MaximVanhove/vue-router-back-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 993 Bytes
/
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
{
"name": "vue-router-back-button",
"version": "1.1.1",
"description": "Add a back button to your application",
"main": "dist/index.js",
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch",
"test": "jest",
"test:watch": "jest --watchAll",
"clean": "rm -rf dist/*.js*"
},
"dependencies": {
"vue": "^2.3.3",
"vue-router": "^2.6.0"
},
"homepage": "https://github.com/MaximVanhove/vue-router-back-button",
"author": "Maxim Vanhove",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"jest": "^22.4.3",
"jest-serializer-vue": "^1.0.0",
"mock-vue-router": "^0.1.3",
"regenerator-runtime": "^0.11.1",
"vue-jest": "^2.2.1",
"webpack": "^4.3.0",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2"
}
}