forked from riverskies/vue-pjax-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 2.02 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
{
"name": "vue-pjax-adapter",
"version": "0.3.0",
"description": "A Vue plugin to enhance your website performance with PJAX without relying on jQuery.",
"main": "index.js",
"scripts": {
"dev": "npm run development",
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"watch-poll": "npm run watch -- --watch-poll",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"prod": "npm run production",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --no-progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"tests": "mocha-webpack --webpack-config=node_modules/laravel-mix/setup/webpack.config.js --require tests/setup.js --slow 200 --recursive \"tests/**/*.spec.js\""
},
"keywords": [
"vue",
"pjax"
],
"repository": {
"type": "git",
"url": "https://github.com/riverskies/vue-pjax-adapter"
},
"bugs": {
"url": "https://github.com/riverskies/vue-pjax-adapter/issues"
},
"author": {
"name": "Barnabas Kecskes",
"email": "barnabas@riverskies.com"
},
"license": "MIT",
"dependencies": {
"axios": "^0.17.1",
"vue": "^2.5.13"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.11",
"cross-env": "^5.1.3",
"expect": "^22.1.0",
"jsdom": "^11.6.2",
"jsdom-global": "^3.0.2",
"laravel-mix": "^2.0.0",
"mocha": "^4.1.0",
"mocha-webpack": "^1.0.1",
"moxios": "^0.4.0",
"sinon": "^4.2.2",
"vuex": "^3.0.1"
}
}