|
2 | 2 | "name": "sha.js", |
3 | 3 | "description": "Streamable SHA hashes in pure javascript", |
4 | 4 | "version": "2.4.11", |
5 | | - "homepage": "https://github.com/crypto-browserify/sha.js", |
6 | 5 | "repository": { |
7 | 6 | "type": "git", |
8 | 7 | "url": "git://github.com/crypto-browserify/sha.js.git" |
9 | 8 | }, |
| 9 | + "bin": "./bin.js", |
| 10 | + "scripts": { |
| 11 | + "prepack": "npmignore --auto --commentLines=autogenerated", |
| 12 | + "lint": "eslint --ext=js,mjs .", |
| 13 | + "pretest": "npm run lint", |
| 14 | + "test": "npm run tests-only", |
| 15 | + "tests-only": "tape 'test/**/*.js'", |
| 16 | + "posttest": "npx npm@'>= 10.2' audit --production", |
| 17 | + "version": "auto-changelog && git add CHANGELOG.md", |
| 18 | + "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" |
| 19 | + }, |
| 20 | + "license": "(MIT AND BSD-3-Clause)", |
| 21 | + "author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)", |
| 22 | + "funding": { |
| 23 | + "url": "https://github.com/sponsors/ljharb" |
| 24 | + }, |
| 25 | + "homepage": "https://github.com/crypto-browserify/sha.js", |
10 | 26 | "dependencies": { |
11 | 27 | "inherits": "^2.0.4", |
12 | 28 | "safe-buffer": "^5.2.1", |
|
22 | 38 | "tape": "^5.9.0", |
23 | 39 | "typedarray": "^0.0.7" |
24 | 40 | }, |
25 | | - "bin": "./bin.js", |
26 | | - "scripts": { |
27 | | - "prepack": "npmignore --auto --commentLines=autogenerated", |
28 | | - "lint": "eslint --ext=js,mjs .", |
29 | | - "pretest": "npm run lint", |
30 | | - "test": "npm run tests-only", |
31 | | - "tests-only": "tape 'test/**/*.js'", |
32 | | - "posttest": "npx npm@'>= 10.2' audit --production", |
33 | | - "version": "auto-changelog && git add CHANGELOG.md", |
34 | | - "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"" |
35 | | - }, |
36 | | - "author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)", |
37 | | - "license": "(MIT AND BSD-3-Clause)", |
38 | | - "engines": { |
39 | | - "node": ">= 0.10" |
40 | | - }, |
41 | 41 | "auto-changelog": { |
42 | 42 | "output": "CHANGELOG.md", |
43 | 43 | "template": "keepachangelog", |
|
51 | 51 | ".github/workflows", |
52 | 52 | ".github" |
53 | 53 | ] |
| 54 | + }, |
| 55 | + "engines": { |
| 56 | + "node": ">= 0.10" |
54 | 57 | } |
55 | 58 | } |
0 commit comments