-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.08 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 4.08 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "just-not-sorry",
"description": "Chrome extension that warns you when you write emails using words which undermine your message",
"version": "2.5.3",
"author": "Steve Brudz, Manish Kakwani, Tami Reiss, and Eric Tillberg of Def Method",
"license": "MIT",
"repository": "git@github.com:defmethodinc/just-not-sorry.git",
"homepage": "https://github.com/defmethodinc/just-not-sorry",
"bugs": "https://github.com/defmethodinc/just-not-sorry/issues/new",
"scripts": {
"e2e": "npm run build && node --experimental-vm-modules ./node_modules/jest/bin/jest.js --verbose --config='.jest.puppeteer.config.js' --maxWorkers=1 ./e2e",
"test": "jest --verbose ./spec",
"test:watch": "npm run test -- --watch",
"build": "webpack --config webpack.config.js",
"build:watch": "webpack --config webpack.config.js --watch",
"webext:run": "sleep 10 && web-ext run --source-dir ./build/ --start-url gmail.com",
"webext:lint": "web-ext lint -s ./build",
"start:firefox": "concurrently \"npm:build:watch\" \"npm:webext:run\"",
"start:chrome": "concurrently \"npm:build:watch\" \"npm:webext:run -- -t chromium\"",
"format": "prettier --log-level warn --write \"{src,spec}/**/*.{js,css}\" \"*.{md,css,json,js}\"",
"format:check": "prettier --check \"{src,spec}/**/*.{js,css}\" \"*.{md,css,json,js}\"",
"lint": "npm run lint:check",
"lint:check": "eslint . --cache",
"lint:fix": "eslint . --cache --fix",
"check": "npm run lint:check && npm run format:check",
"site:version": "echo \"{\\\"commit\\\": \\\"$(git rev-parse --short HEAD)\\\"}\" > ./site/_data/version.json",
"site:phrases": "cp ./src/warnings/phrases.json ./site/_data",
"site:test": "node --test site/test/validate-site.test.mjs",
"site:build": "npm run site:phrases && npm run site:version && cd site && bundle exec jekyll build",
"site:validate": "node site/test/validate-site.mjs site/_site $(git rev-parse --short HEAD) 'does that make sense'",
"semantic-release": "cross-env GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD) semantic-release",
"prepare": "husky"
},
"devDependencies": {
"@babel/cli": "^8.0.4",
"@babel/core": "^8.0.1",
"@babel/eslint-parser": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@babel/preset-react": "^8.0.1",
"@eslint/compat": "^2.1.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^9.39.5",
"@happy-dom/jest-environment": "^20.11.1",
"@jest/environment": "^30.4.1",
"@jest/fake-timers": "^30.4.1",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "^11.0.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "16.3.2",
"babel-loader": "^10.1.1",
"commitizen": "^4.3.2",
"concurrently": "^10.0.3",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.39.5",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jest": "^29.15.5",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.7.0",
"html-webpack-plugin": "^5.6.7",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-mock": "^30.4.1",
"jest-util": "^30.4.1",
"lint-staged": "^17.2.0",
"prettier": "^3.9.6",
"puppeteer": "^25.3.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-tooltip": "6.0.8",
"semantic-release": "25.0.8",
"style-loader": "^4.0.0",
"web-ext": "^10.5.0",
"webpack": "^5.108.4",
"webpack-cli": "^7.2.1",
"webpack-dev-server": "^6.0.0"
},
"dependencies": {
"prop-types": "15.8.1",
"range-at-index": "^1.0.4"
},
"overrides": {
"adm-zip": "0.6.0",
"shell-quote": "1.10.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --cache --fix"
],
"*.{md,css,json}": [
"prettier --write"
]
},
"jest": {
"testEnvironment": "@happy-dom/jest-environment",
"setupFilesAfterEnv": [
"<rootDir>/spec/setupTests.js"
]
}
}