-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.86 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
72
73
74
75
{
"name": "source-map-diff",
"version": "1.3.1",
"description": "Compare source maps to understand why a bundle changed in size.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"sourcemap",
"source-map",
"bundle size"
],
"bin": {
"source-map-diff": "lib/cli/index.js"
},
"files": [
"src",
"lib"
],
"scripts": {
"start": "ts-node -T ./src/cli",
"build": "rm -rf ./lib && tsc -p .",
"test": "jest && eslint .",
"lint": "eslint . --fix",
"version": "rm -rf ./lib && tsc -p ."
},
"repository": "https://github.com/dylang/source-map-diff",
"author": "Dylan Greene",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"common-path-prefix": "^3.0.0",
"got": "^11.8.6",
"load-json-file": "6.2.0",
"source-map-explorer": "^2.5.3",
"text-treeview": "^1.0.2",
"webtreemap": "^2.0.1",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/nodemon": "1.19.6",
"@types/prettier": "2.7.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-xo": "0.43.1",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "24.7.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "34.0.1",
"jest": "28.1.3",
"np": "8.0.1",
"prettier": "2.8.8",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}