-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
71 lines (71 loc) · 1.47 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "url-js",
"version": "2.1.0",
"description": "Simple URL parser, similar to DOM URL",
"main": "dist/url.js",
"module": "url.js",
"esnext": "url.js",
"unpkg": "dist/url.min.js",
"reveal": true,
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "npx jest --forceExit",
"test-cov": "npm run test -- --coverage",
"verup": "verup"
},
"verup": {
"files": [
"package-lock.json",
"bower.json",
"url/URL.js",
"url/URL.d.ts",
"url.js",
"url.d.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/URL.js.git"
},
"keywords": [
"URL",
"DOM",
"Parse",
"Parser",
"URI",
"http",
"origin",
"hostname",
"pathname",
"URLJS"
],
"author": "Dumitru Uzun <contact@duzun.me> (https://DUzun.Me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/URL.js/issues"
},
"homepage": "https://github.com/duzun/URL.js#readme",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"rollup": "^2.53.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"verup": "^1.7.1"
},
"jshintConfig": {
"esversion": 9,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false
}
}