-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·38 lines (38 loc) · 1.07 KB
/
package.json
File metadata and controls
executable file
·38 lines (38 loc) · 1.07 KB
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
{
"name": "vue-url-parameters",
"version": "1.0.7",
"description": "A vue mixin that simplifies working with url parameters. The package is developed for the purpose of allowing the key and values of a vue filter to be defined with url parameters.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build",
"test": "node_modules/.bin/mocha tests/tests.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Sempro/vue-url-parameters.git"
},
"keywords": [
"Sempro AS",
"url parameters",
"vue mixin",
"mixin",
"query string parameters",
"query string"
],
"author": "Sempro AS",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sempro/vue-url-parameters/issues"
},
"homepage": "https://github.com/Sempro/vue-url-parameters",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-loader": "^6.2.5",
"babel-preset-env": "^1.4.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^4.1.1",
"mocha": "^3.5.0"
}
}