-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·41 lines (41 loc) · 1.07 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
{
"name": "@ultraq/url-utils",
"version": "0.4.0",
"description": "A collection of utilities for working with URLs",
"author": "Emanuel Rabina <emanuelrabina@gmail.com> (http://www.ultraq.net.nz/)",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ultraq/url-utils.git"
},
"keywords": [
"url",
"utilities",
"join",
"object",
"searchString"
],
"module": "url-utils.es.js",
"main": "url-utils.cjs.js",
"sideEffects": false,
"scripts": {
"lint": "eslint \"*.js\"",
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "BABEL_ENV=cjs babel url-utils.js --out-file url-utils.cjs.js --source-maps",
"build:es": "BABEL_ENV=es babel url-utils.js --out-file url-utils.es.js --source-maps",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/preset-env": "^7.11.0",
"coveralls": "^3.1.0",
"eslint": "^7.6.0",
"eslint-config-ultraq": "^2.3.3",
"jest": "^26.2.2"
},
"engines": {
"node": ">=10"
}
}