-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.78 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.78 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "github-diff-explorer",
"version": "1.3.0",
"description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests",
"main": "index.js",
"scripts": {
"start": "npm run build:ext:chrome && npm run build:dev:watch",
"test": "jest",
"build:dev": "webpack --config webpack.dev.js",
"build:dev:watch": "webpack --config webpack.dev.js --watch",
"build:ext:chrome": "GDE_BROWSER=chrome node ./scripts/ext-generate.js",
"build:ext:firefox": "GDE_BROWSER=firefox node ./scripts/ext-generate.js",
"build:prod:chrome": "GDE_BROWSER=chrome webpack --config webpack.prod.js",
"build:prod:firefox": "GDE_BROWSER=firefox webpack --config webpack.prod.js",
"release": "npm run release:chrome && npm run release:firefox",
"release:chrome": "npm run build:ext:chrome && npm run build:prod:chrome && npm run pack:chrome",
"release:firefox": "npm run build:ext:firefox && npm run build:prod:firefox && npm run pack:firefox",
"pack:chrome": "GDE_BROWSER=chrome node ./scripts/ext-pack.js",
"pack:firefox": "GDE_BROWSER=firefox node ./scripts/ext-pack.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"version:bump:patch": "VERSION_TYPE=PATCH node ./scripts/ext-bump-version.js",
"version:bump:minor": "VERSION_TYPE=MINOR node ./scripts/ext-bump-version.js",
"version:bump:major": "VERSION_TYPE=MAJOR node ./scripts/ext-bump-version.js",
"version:explicit": "node ./scripts/ext-bump-version.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/alexmdodge/github-diff-explorer.git"
},
"keywords": [
"github",
"bitbucket",
"diff-viewer",
"explorer",
"plugin",
"extension"
],
"author": "Alex Dodge",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexmdodge/github-diff-explorer/issues"
},
"homepage": "https://github.com/alexmdodge/github-diff-explorer#readme",
"config": {
"name": {
"extension": "GitHub Diff Explorer",
"script": "gde_script",
"style": "gde_styles"
},
"paths": {
"entry": "./src/script.ts",
"output": "./dist/<BROWSER>/lib"
}
},
"dependencies": {},
"devDependencies": {
"@types/jest": "26.0.20",
"@typescript-eslint/eslint-plugin": "3.9.1",
"@typescript-eslint/parser": "3.9.1",
"css-loader": "5.1.1",
"eslint": "7.7.0",
"execa": "4.0.3",
"fs-extra": "9.0.1",
"jest": "26.6.3",
"jest-environment-jsdom": "26.6.2",
"jest-environment-jsdom-global": "2.0.4",
"mini-css-extract-plugin": "1.3.9",
"style-loader": "1.2.1",
"ts-jest": "26.5.3",
"ts-loader": "8.0.17",
"typescript": "4.2.2",
"webpack": "5.24.3",
"webpack-cli": "4.5.0",
"webpack-merge": "5.7.3"
}
}