This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
generated from tophat/new-project-kit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
91 lines (91 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "semantic-release-firefox-add-on",
"version": "0.0.1",
"description": "A Semantic Release plugin to sign packages through the Firefox AddOn store",
"main": "src/index.js",
"repository": "[email protected]:tophat/semantic-release-firefox-add-on.git",
"author": "Daniel Basilio <[email protected]>",
"license": "Apache-2.0",
"private": false,
"dependencies": {
"web-ext": "^5.0.0||^6.0.0"
},
"peerDependencies": {
"aggregate-error": "^3.0.0",
"semantic-release": "^16.0.0||^17.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-env": "^7.14.5",
"@tophat/commitizen-adapter": "^0.5.4",
"@tophat/commitlint-config": "^0.3.4",
"@tophat/eslint-config": "^0.9.0",
"@types/jest": "^26.0.23",
"aggregate-error": "^3.1.0",
"all-contributors-cli": "^6.20.0",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.2",
"commitizen": "^4.2.4",
"commitlint": "^12.1.4",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^27.0.4",
"jest-mock-module": "^0.1.4",
"lint-staged": "^11.0.0",
"memfs": "^3.2.2",
"prettier": "^2.3.1",
"semantic-release": "^17.4.3",
"unionfs": "^4.4.0",
"yarn-deduplicate": "^3.1.0"
},
"scripts": {
"build": "mkdir -p artifacts; echo 'When changing this remember to update @semantic-release/npm.'",
"commit": "git-cz",
"lock-check": "yarn-deduplicate --list --fail",
"lock-dedup": "yarn-deduplicate",
"lint": "eslint . --ext .js,.ts --max-warnings=0",
"release": "semantic-release",
"report-coverage": "codecov",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --ci --coverage --coverageDirectory artifacts/coverage",
"test-modified": "jest --bail --findRelatedTests"
},
"commitlint": {
"extends": [
"@tophat/commitlint-config"
]
},
"config": {
"commitizen": {
"path": "@tophat/commitizen-adapter"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint",
"yarn test-modified"
],
"yarn.lock": [
"yarn lock-check"
]
},
"jest": {
"setupFilesAfterEnv": [
"./tests/setup.js"
]
},
"release": {
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm"
]
}
}