1 | {
|
---|
2 | "name": "@ampproject/remapping",
|
---|
3 | "version": "1.0.1",
|
---|
4 | "description": "Remap sequential sourcemaps through transformations to point at the original source code",
|
---|
5 | "keywords": [
|
---|
6 | "source",
|
---|
7 | "map",
|
---|
8 | "remap"
|
---|
9 | ],
|
---|
10 | "main": "dist/remapping.umd.js",
|
---|
11 | "module": "dist/remapping.mjs",
|
---|
12 | "typings": "dist/types/remapping.d.ts",
|
---|
13 | "files": [
|
---|
14 | "dist"
|
---|
15 | ],
|
---|
16 | "author": "Justin Ridgewell <jridgewell@google.com>",
|
---|
17 | "repository": {
|
---|
18 | "type": "git",
|
---|
19 | "url": "git+https://github.com/ampproject/remapping.git"
|
---|
20 | },
|
---|
21 | "license": "Apache-2.0",
|
---|
22 | "engines": {
|
---|
23 | "node": ">=6.0.0"
|
---|
24 | },
|
---|
25 | "scripts": {
|
---|
26 | "build": "run-s -n build:*",
|
---|
27 | "build:rollup": "rollup -c rollup.config.js",
|
---|
28 | "build:ts": "tsc --project tsconfig.build.json",
|
---|
29 | "lint": "run-s -n lint:*",
|
---|
30 | "lint:prettier": "npm run test:lint:prettier -- --write",
|
---|
31 | "lint:ts": "npm run test:lint:ts -- --fix",
|
---|
32 | "prebuild": "rm -rf dist",
|
---|
33 | "prepublishOnly": "npm run preversion",
|
---|
34 | "preversion": "run-s test build",
|
---|
35 | "test": "run-s -n test:lint 'test:only -- --no-cache'",
|
---|
36 | "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
---|
37 | "test:lint": "run-s -n test:lint:*",
|
---|
38 | "test:lint:prettier": "prettier --check '{src,test}/**/*.ts'",
|
---|
39 | "test:lint:ts": "eslint '{src,test}/**/*.ts'",
|
---|
40 | "test:only": "jest --coverage",
|
---|
41 | "test:watch": "jest --coverage --watch"
|
---|
42 | },
|
---|
43 | "devDependencies": {
|
---|
44 | "@rollup/plugin-node-resolve": "11.0.1",
|
---|
45 | "@rollup/plugin-typescript": "8.1.0",
|
---|
46 | "@types/jest": "26.0.19",
|
---|
47 | "@typescript-eslint/eslint-plugin": "4.10.0",
|
---|
48 | "@typescript-eslint/parser": "4.10.0",
|
---|
49 | "eslint": "7.15.0",
|
---|
50 | "eslint-config-prettier": "7.0.0",
|
---|
51 | "jest": "26.6.3",
|
---|
52 | "jest-config": "26.6.3",
|
---|
53 | "npm-run-all": "4.1.5",
|
---|
54 | "prettier": "2.2.1",
|
---|
55 | "rollup": "2.35.1",
|
---|
56 | "ts-jest": "26.4.4",
|
---|
57 | "tslib": "2.0.3",
|
---|
58 | "typescript": "4.1.3"
|
---|
59 | },
|
---|
60 | "dependencies": {
|
---|
61 | "@jridgewell/resolve-uri": "1.0.0",
|
---|
62 | "sourcemap-codec": "1.4.8"
|
---|
63 | }
|
---|
64 | }
|
---|