forked from dwp/eslint-config-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.68 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
{
"name": "@dwp/eslint-config-mocha",
"version": "1.0.0",
"author": "Mike Shaw",
"contributors": [
{
"name": "Adam Moss"
}
],
"license": "ISC",
"description": "mocha configuration for eslint",
"keywords": [
"config",
"shareable-config",
"eslint",
"lint",
"mocha"
],
"homepage": "https://github.com/dwp/eslint-config-mocha",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:dwp/eslint-config-mocha.git"
},
"bugs": {
"url": "https://github.com/dwp/eslint-config-mocha/issues"
},
"files": [
"src/**",
"tests/.eslintrc.js"
],
"main": "src/index.js",
"scripts": {
"compliance-tests": "npm run compliance:commits && npm run compliance:lint",
"compliance:commits": "commitlint --from=master --to=HEAD",
"compliance:lint": "eslint --ignore-path .gitignore .",
"pipeline": "npm run compliance-tests && npm run security-tests && npm run tests",
"security-tests": "npm run security:outdated && npm run security:audit",
"security:audit": "npm audit || true",
"security:outdated": "npm outdated || true",
"security:snyk": "snyk test -dev",
"test": "npm run pipeline",
"tests": "npm run tests:unit",
"tests:unit": "nyc --report-dir .coverage/unit mocha \"tests/unit/**/*.spec.js\""
},
"dependencies": {
"eslint-plugin-mocha": "5.3.0"
},
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@dwp/commitlint-config-base": "1.1.0",
"@dwp/eslint-config-base": "4.0.0",
"@dwp/nyc-config-base": "1.0.0",
"chai": "4.2.0",
"eslint": "6.0.1",
"husky": "2.5.0",
"lint-staged": "8.2.1",
"mocha": "6.1.4",
"nyc": "14.1.1",
"snyk": "1.182.0"
}
}