-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 KB
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
{
"name": "vanilla-js-url",
"version": "3.0.5",
"main": "src/url.js",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-minify": "^0.5.1",
"eslint": "^7.30.0",
"esm": "^3.2.25",
"jest": "^27.0.6",
"prettier": "2.3.2",
"rollup": "^3.30.0",
"rollup-plugin-babel": "^4.4.0"
},
"scripts": {
"dev": "node -r esm dev.js",
"build": "yarn eslint && yarn test && yarn rollup && yarn prettier && yarn minify",
"eslint": "npx eslint src",
"test": "npx jest",
"rollup": "npx rollup --config",
"prettier": "yarn prettier:dist",
"prettier:dist": "npx prettier --write dist/url.js",
"prettier:src": "npx prettier --write src/url.js",
"minify": "npx minify dist/url.js --out-file dist/url.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/worka/vanilla-js-url.git"
},
"keywords": [
"url",
"add",
"get",
"params",
"construct",
"parse",
"add params to url",
"get params from url",
"js",
"javascript",
"construct url",
"parse url",
"vanilla"
],
"author": "worka",
"license": "MIT",
"bugs": {
"url": "https://github.com/worka/vanilla-js-url/issues"
},
"homepage": "https://github.com/worka/vanilla-js-url"
}