This repository has been archived by the owner on Jul 11, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
72 lines (72 loc) · 1.61 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
{
"name": "ci-job-number",
"version": "1.2.2",
"description": "Return CI job number to run huge tests only on first job",
"keywords": [
"CI",
"Travis",
"AppVeyor",
"Circle",
"Semaphore",
"job"
],
"scripts": {
"spell": "yaspeller-ci *.md",
"test": "jest-ci --coverage && eslint-ci . && yarn spell"
},
"author": "Andrey Sitnik <andrey@sitnik.ru>",
"license": "MIT",
"repository": "ai/ci-job-number",
"devDependencies": {
"@logux/eslint-config": "^36.1.2",
"clean-publish": "^1.1.7",
"eslint": "^6.8.0",
"eslint-ci": "^1.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-es5": "^1.5.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^18.0.1",
"husky": "^4.2.5",
"jest": "^25.3.0",
"jest-ci": "^0.1.1",
"lint-staged": "^10.1.4",
"pre-commit": "^1.2.2",
"yaspeller-ci": "^1.0.2"
},
"eslintConfig": {
"extends": "@logux/eslint-config"
},
"lint-staged": {
"*.md": "yaspeller",
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"yaspeller": {
"lang": "en",
"ignoreCapitalization": true,
"ignoreText": [
" \\(by [^)]+\\)."
],
"dictionary": [
"Versioning",
"Travis",
"AppVeyor",
"CircleCI",
"CI",
"JSDoc",
"js",
"GitLab",
"GitHub"
]
}
}