forked from Mikhus/domurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1006 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
40
41
42
43
44
45
46
47
{
"name": "domurl",
"version": "2.2.0",
"description": "Lightweight URL manipulation with JavaScript.",
"homepage": "https://github.com/Mikhus/jsurl",
"keywords": [
"url",
"querystring"
],
"categories": [
"Utilities"
],
"jam": {
"main": "url.min.js",
"include": [
"url.js",
"url.min.js",
"README.md"
]
},
"main": "url.min.js",
"scripts": {
"test": "mocha ./test/url.js",
"minify": "./node_modules/uglify-js/bin/uglifyjs url.js --output url.min.js --compress --mangle"
},
"maintainers": [
{
"name": "Mykhailo Stadnyk",
"email": "mikhus@gmail.com"
}
],
"url": {
"bugs": "https://github.com/Mikhus/domurl/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Mikhus/domurl.git"
},
"github": "https://github.com/Mikhus/domurl",
"devDependencies": {
"jscs": "^3.0.7",
"jshint": "^2.10.1",
"mocha": "^6.0.2",
"uglify-js": "^3.4.9"
}
}