-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 930 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
{
"name": "tiny-query-string",
"version": "0.1.2",
"description": "A really tiny URL query string utility",
"main": "tiny-query-string.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/index.js",
"build": "./node_modules/.bin/uglifyjs tiny-query-string.js -o tiny-query-string.min.js -m"
},
"repository": {
"type": "git",
"url": "git+https://github.com/richardwestenra/tiny-query-string.git"
},
"keywords": [
"query string",
"tiny",
"query",
"string"
],
"author": {
"name": "Richard Westenra",
"email": "richard@richardwestenra.com",
"url": "http://richardwestenra.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/richardwestenra/tiny-query-string/issues"
},
"homepage": "http://github.com/richardwestenra/tiny-query-string/",
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.1.2",
"uglify-js": "^2.7.4"
}
}