@sonarsource/sonar-dummy-js 2.0.0 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -7,3 +7,13 @@
|
|
|
7
7
|
A sample project used for testing purposes
|
|
8
8
|
|
|
9
9
|
This project uses NPM and is published to Repox and npmjs.com
|
|
10
|
+
|
|
11
|
+
## Artifact Verification
|
|
12
|
+
|
|
13
|
+
Provenance attestations are available at: <https://github.com/SonarSource/sonar-dummy-js/attestations>
|
|
14
|
+
|
|
15
|
+
To verify an artifact:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
gh attestation verify <artifact-file> --repo SonarSource/sonar-dummy-js
|
|
19
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sonarsource/sonar-dummy-js",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Dummy project making use of SonarSource organization tools for releasing NPM projects",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -12,10 +12,13 @@
|
|
|
12
12
|
"LICENSE",
|
|
13
13
|
"README.md"
|
|
14
14
|
],
|
|
15
|
-
"repository":
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+ssh://git@github.com/SonarSource/sonar-dummy-js.git"
|
|
18
|
+
},
|
|
16
19
|
"author": "Engineering Experience Squad <platform.eng-ex@sonarsource.com>",
|
|
17
20
|
"license": "LGPLv3",
|
|
18
21
|
"devDependencies": {
|
|
19
|
-
"jest": "^
|
|
22
|
+
"jest": "^30.0.0"
|
|
20
23
|
}
|
|
21
24
|
}
|