This repository has been archived by the owner on Nov 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.2 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
{
"name": "vue-laroute",
"description": "Inject laravel routes into your vue application via laroute",
"version": "0.2.0",
"author": {
"name": "Sam Turrell",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/samturrell/vue-laroute/issues"
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.1.2",
"babel-polyfill": "6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-power-assert": "^1.0.0",
"buble": "^0.14.0",
"cross-env": "^5.0.5",
"eslint": "^3.14.1",
"eslint-plugin-vue-libs": "^1.2.0",
"eslint-loader": "^1.6.1",
"html-webpack-plugin": "^2.19.0",
"mocha": "^3.2.0",
"mocha-loader": "^1.1.1",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-safari-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"power-assert": "^1.4.2",
"rollup": "^0.36.4",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-replace": "^1.1.1",
"uglify-js": "^2.7.5",
"vue": "^2.1.10",
"webpack": "^2.2.0",
"webpack-dev-server": "^2.2.1"
},
"files": [
"dist/vue-laroute.js",
"dist/vue-laroute.min.js",
"dist/vue-laroute.common.js",
"src"
],
"homepage": "https://github.com/samturrell/vue-laroute#readme",
"main": "dist/vue-laroute.common.js",
"module": "dist/vue-laroute.esm.js",
"unpkg": "dist/vue-laroute.js",
"keywords": [
"plugin",
"vue",
"vuejs"
],
"license": "MIT",
"engines": {
"node": ">= 6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samturrell/vue-laroute.git"
},
"scripts": {
"build": "node config/build.js",
"clean": "rm -rf coverage && rm -rf dist/*.js* && rm ./*.log",
"dev": "cross-env BABEL_ENV=test webpack-dev-server --inline --hot --open --content-base ./test/unit/ --config config/webpack.dev.conf.js",
"lint": "eslint src test config",
"example": "npm run build && webpack --config=./config/example.js"
}
}