Skip to content

Commit

Permalink
Update package.json to include the repository (#129)
Browse files Browse the repository at this point in the history
Hi there!
This change adds the repository property to your package.json file(s). Having this available provides a number of benefits to security tooling. For example, it allows for greater trust by checking for signed commits, contributors to a release and validating history with the project. It also allows for comparison between the source code and the published artifact in order to detect attacks on authors during the publication process.
We validate that we're making a PR against the correct repository by comparing the metadata for the published artifact on [npmjs.com](www.npmjs.com) against the metadata in the package.json file in the repository.
This change is provided by a team at Microsoft -- we're happy to answer any questions you may have. (Members of this team include [@s-tuli](https://github.com/s-tuli), [@iarna](https://github.com/iarna), [@v-rr](https://github.com/v-rr), [@v-jiepeng](https://github.com/v-jiepeng), [@v-zhzhou](https://github.com/v-zhzhou) and [@v-gjy](https://github.com/v-gjy)). If you would prefer that we not make these sorts of PRs to projects you maintain, please just say. If you'd like to learn more about what we're doing here, we've prepared a document talking about both this project and some of our other activities around supply chain security here: [microsoft/Secure-Supply-Chain](https://github.com/microsoft/Secure-Supply-Chain)
This PR provides repository metadata for the following packages:
* dataloader-sequelize
  • Loading branch information
v-gjy authored Oct 19, 2021
1 parent 808eae9 commit 3366d47
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@
"test:v4:raw": "npm install sequelize@4 && npm run test:current:raw",
"cover": "babel-node node_modules/.bin/isparta cover --excludes **/resources/** _mocha -- --require resources/mocha-bootload --check-leaks --timeout 10000 --colors --reporter spec --recursive 'test/**/*.test.js'"
},
"repository": {
"type": "git",
"url": "https://github.com/mickhansen/dataloader-sequelize.git"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-eslint": "^6.1.0",
Expand Down

0 comments on commit 3366d47

Please sign in to comment.