1 | {
|
---|
2 | "name": "@jridgewell/resolve-uri",
|
---|
3 | "version": "1.0.0",
|
---|
4 | "description": "Resolve a URI relative to an optional base URI",
|
---|
5 | "keywords": [
|
---|
6 | "resolve",
|
---|
7 | "uri",
|
---|
8 | "url",
|
---|
9 | "path"
|
---|
10 | ],
|
---|
11 | "main": "dist/resolve-uri.umd.js",
|
---|
12 | "module": "dist/resolve-uri.mjs",
|
---|
13 | "typings": "dist/types/resolve-uri.d.ts",
|
---|
14 | "files": [
|
---|
15 | "dist"
|
---|
16 | ],
|
---|
17 | "author": "Justin Ridgewell <jridgewell@google.com>",
|
---|
18 | "repository": {
|
---|
19 | "type": "git",
|
---|
20 | "url": "git+https://github.com/jridgewell/resolve-uri.git"
|
---|
21 | },
|
---|
22 | "bugs": {
|
---|
23 | "url": "https://github.com/jridgewell/resolve-uri/issues"
|
---|
24 | },
|
---|
25 | "license": "MIT",
|
---|
26 | "engines": {
|
---|
27 | "node": ">=6.0.0"
|
---|
28 | },
|
---|
29 | "scripts": {
|
---|
30 | "lint:ts": "npm run test:lint:ts -- --fix",
|
---|
31 | "lint:prettier": "npm run test:lint:prettier -- --write",
|
---|
32 | "lint": "run-s -n lint:*",
|
---|
33 | "prebuild": "rm -rf dist",
|
---|
34 | "build:ts": "tsc --module commonjs",
|
---|
35 | "build:rollup": "rollup -c rollup.config.ts",
|
---|
36 | "build": "run-s -n build:*",
|
---|
37 | "test": "jest --coverage",
|
---|
38 | "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
---|
39 | "test:watch": "jest --coverage --watch",
|
---|
40 | "test:lint:ts": "tslint --project tsconfig.json -t codeFrame '{src,test}/**/*.ts'",
|
---|
41 | "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",
|
---|
42 | "test:lint": "run-s -n test:lint:*",
|
---|
43 | "test:prod": "run-s -n test:lint 'test --no-cache'",
|
---|
44 | "preversion": "run-s test:prod build",
|
---|
45 | "prepublishOnly": "npm run preversion"
|
---|
46 | },
|
---|
47 | "devDependencies": {
|
---|
48 | "@types/jest": "24.0.15",
|
---|
49 | "@types/node": "12.6.2",
|
---|
50 | "jest": "24.8.0",
|
---|
51 | "jest-config": "24.8.0",
|
---|
52 | "npm-run-all": "4.1.5",
|
---|
53 | "prettier": "1.18.2",
|
---|
54 | "rollup": "1.16.7",
|
---|
55 | "rollup-plugin-commonjs": "10.0.1",
|
---|
56 | "rollup-plugin-node-resolve": "5.2.0",
|
---|
57 | "rollup-plugin-sourcemaps": "0.4.2",
|
---|
58 | "rollup-plugin-typescript": "1.0.1",
|
---|
59 | "ts-jest": "24.0.2",
|
---|
60 | "ts-node": "8.3.0",
|
---|
61 | "tslint": "5.18.0",
|
---|
62 | "tslint-config-prettier": "1.18.0",
|
---|
63 | "tslint-config-standard": "8.0.1",
|
---|
64 | "typescript": "3.5.3"
|
---|
65 | }
|
---|
66 | }
|
---|