forked from fuzzybaz/eslint-config-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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
{
"name": "@dwp/eslint-config-base",
"version": "4.0.0",
"author": "Adam Moss",
"contributors": [
{
"name": "Mike Shaw"
},
{
"name": "James Gauld"
}
],
"license": "ISC",
"description": "base configuration for eslint",
"keywords": [
"config",
"shareable-config",
"eslint",
"lint"
],
"homepage": "https://github.com/dwp/eslint-config-base",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:dwp/eslint-config-base.git"
},
"bugs": {
"url": "https://github.com/dwp/eslint-config-base/issues"
},
"files": [
"src/**",
".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-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2"
},
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@dwp/commitlint-config-base": "1.1.0",
"@dwp/eslint-config-mocha": "1.0.0",
"@dwp/nyc-config-base": "1.0.0",
"chai": "4.2.0",
"eslint": "6.2.1",
"husky": "3.0.4",
"lint-staged": "9.2.3",
"mocha": "6.2.0",
"nyc": "14.1.1",
"snyk": "1.217.3"
}
}