This repository has been archived by the owner on Jul 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.62 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
{
"name": "sonarlint",
"version": "1.1.0",
"author": "Adam Moss",
"license": "ISC",
"description": "sonarlint",
"keywords": [
"sonarqube",
"sonarlint",
"lint"
],
"homepage": "https://github.com/adam-moss/sonarlint",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:adam-moss/sonarlint.git"
},
"bugs": {
"url": "https://github.com/adam-moss/sonarlint/issues"
},
"files": [
"src/**",
"vendor/**"
],
"bin": "src/index.js",
"main": "",
"scripts": {
"precommit": "lint-staged",
"commitmsg": "commitlint --edit",
"release": "standard-version && git commit --amend --no-edit --signoff",
"test": "npm run pipeline",
"pipeline": "npm run compliance-tests && npm run security-tests && quality-tests",
"compliance-tests": "npm run compliance:commitlint",
"compliance:commitlint": "commitlint --from=develop --to=HEAD",
"security-tests": "npm run security:outdated && npm run security:nsp",
"security:outdated": "npm outdated || true",
"security:nsp": "nsp check",
"security:snyk": "snyk test --dev",
"quality-tests": "npm run quality:sonarlint",
"quality:sonarlint": "node src/index --src \"src/**\" # 'tests \"tests/**\"'"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "3.0.4",
"@commitlint/config-angular": "3.0.4",
"husky": "0.14.3",
"lint-staged": "4.0.2",
"nsp": "2.7.0",
"snyk": "1.38.1",
"standard-version": "4.2.0"
}
}