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
| {
| "name": "ssri",
| "version": "8.0.1",
| "description": "Standard Subresource Integrity library -- parses, serializes, generates, and verifies integrity metadata according to the SRI spec.",
| "main": "index.js",
| "files": [],
| "scripts": {
| "prerelease": "npm t",
| "postrelease": "npm publish",
| "prepublishOnly": "git push --follow-tags",
| "posttest": "npm run lint",
| "release": "standard-version -s",
| "test": "tap",
| "coverage": "tap",
| "lint": "standard"
| },
| "tap": {
| "check-coverage": true
| },
| "repository": "https://github.com/npm/ssri",
| "keywords": [
| "w3c",
| "web",
| "security",
| "integrity",
| "checksum",
| "hashing",
| "subresource integrity",
| "sri",
| "sri hash",
| "sri string",
| "sri generator",
| "html"
| ],
| "author": {
| "name": "Kat Marchán",
| "email": "kzm@sykosomatic.org",
| "twitter": "maybekatz"
| },
| "license": "ISC",
| "dependencies": {
| "minipass": "^3.1.1"
| },
| "devDependencies": {
| "standard": "^16.0.3",
| "standard-version": "^9.1.0",
| "tap": "^14.10.6"
| },
| "engines": {
| "node": ">= 8"
| }
| }
|
|