-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.18 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
{
"name": "universal-url",
"description": "WHATWG URL for Node & Browser.",
"version": "2.0.0",
"license": "MIT",
"author": "Steven Vachon <[email protected]> (https://svachon.com)",
"repository": "github:stevenvachon/universal-url",
"browser": "browser.js",
"dependencies": {
"hasurl": "^1.0.0",
"whatwg-url": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"chai": "^4.2.0",
"common-shakeify": "~0.6.0",
"gzip-size-cli": "^3.0.0",
"mocha": "^6.1.4",
"puppeteer": "^1.14.0",
"rimraf": "^2.6.3",
"terser": "^3.17.0"
},
"engines": {
"node": ">= 6"
},
"scripts": {
"posttest": "terser browser-built.js --compress --mangle | gzip-size && rimraf browser-built.js",
"pretest": "browserify browser.js --global-transform [ babelify --presets [ @babel/env ] ] --plugin=common-shakeify --standalone=UniversalURL --outfile=browser-built.js",
"test": "mocha test.js --check-leaks --globals=URL,URLSearchParams --bail"
},
"files": [
"browser.js",
"index.js"
],
"keywords": [
"uri",
"url",
"whatwg"
]
}