-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "qsomeness",
"version": "2.1.3",
"description": "A zero-dependencies tiny ~8kb (2.1kb gzipped) tool to work with url querystrings. Works both on server and client.",
"main": "dist/index.js",
"scripts": {
"test": "mocha ./test",
"build": "babel index.js -d dist",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stecb/qsomeness.git"
},
"keywords": [
"javascript",
"querystring",
"url",
"server",
"client",
"query-string",
"parameters",
"node"
],
"author": "Stefano Ceschi Berrini <@stecb>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stecb/qsomeness/issues"
},
"homepage": "https://github.com/stecb/qsomeness#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"chai": "^4.1.2",
"husky": "^1.0.0-rc.13",
"mocha": "^5.2.0"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}