-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "job-search-assist",
"version": "1.10.0",
"private": true,
"description": "Browser extension to avoid seeing the same job/company listing twice",
"main": "src/index.user.js",
"scripts": {
"start:dev": "http-server -c5",
"format": "eslint --fix src/ && prettier --write src/",
"lint": "eslint src/ --max-warnings 0 && prettier --check src/",
"test": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twolfson/job-search-assist.git"
},
"author": "Todd Wolfson <[email protected]> (https://twolfson.com/)",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/twolfson/job-search-assist/issues"
},
"homepage": "https://github.com/twolfson/job-search-assist#readme",
"devDependencies": {
"@babel/eslint-parser": "~7.21.8",
"eslint": "~8.41.0",
"eslint-config-prettier": "~8.8.0",
"foundry": "~4.7.0",
"foundry-release-git": "~2.1.2",
"foundry-release-npm": "~2.1.1",
"http-server": "~14.1.1",
"prettier": "~2.8.8"
},
"foundry": {
"releaseCommands": [
"foundry-release-git",
"foundry-release-npm"
]
}
}