-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 980 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
36
37
38
39
{
"name": "qsm",
"version": "2.1.2",
"description": "a simple tool that allows you to remove any querystring from the url",
"main": "qsm.js",
"scripts": {
"test": "mocha -c --check-leaks --inline-diffs",
"build": "gulp build",
"build-web": "browserify build/build.js --s qsm | uglifyjs -c > qsm-web.js"
},
"repository": {
"type": "git",
"url": "https://github.com/lucasreppewelander/query-string-manager.git"
},
"keywords": [
"querystring",
"cleaner",
"remover",
"query",
"string"
],
"author": "Lucas Reppe Welander",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.18.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.1",
"gulp-insert": "^0.5.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"lodash": "^4.17.15",
"mocha": "^3.2.0",
"pump": "^1.0.1"
}
}