|
| 1 | +{ |
| 2 | + "name": "npm-security-aggregator", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "View audit reports for a published npm package", |
| 5 | + "license": "MIT", |
| 6 | + "type": "module", |
| 7 | + "module": "docs/app.min.js", |
| 8 | + "browser": "docs/index.html", |
| 9 | + "style": "docs/style.min.css", |
| 10 | + "types": "docs/app.d.ts", |
| 11 | + "repository": { |
| 12 | + "type": "git", |
| 13 | + "url": "git+https://github.com/center-key/npm-security-aggregator.git" |
| 14 | + }, |
| 15 | + "homepage": "https://npm-security-aggregator.js.org", |
| 16 | + "bugs": "https://github.com/center-key/npm-security-aggregator/issues", |
| 17 | + "docs": "https://npm-security-aggregator.js.org", |
| 18 | + "author": "Center Key (https://centerkey.com)", |
| 19 | + "keywords": [ |
| 20 | + "audit", |
| 21 | + "npm", |
| 22 | + "package", |
| 23 | + "security", |
| 24 | + "vulnerability" |
| 25 | + ], |
| 26 | + "jshintConfig": { |
| 27 | + "esversion": 11, |
| 28 | + "strict": "implied", |
| 29 | + "eqeqeq": true, |
| 30 | + "undef": true, |
| 31 | + "unused": true, |
| 32 | + "varstmt": true, |
| 33 | + "browser": true, |
| 34 | + "node": true, |
| 35 | + "mocha": true, |
| 36 | + "globals": { |
| 37 | + "dna": false, |
| 38 | + "fetchJson": false, |
| 39 | + "libX": false, |
| 40 | + "prettyPrintJson": false |
| 41 | + } |
| 42 | + }, |
| 43 | + "runScriptsConfig": { |
| 44 | + "clean": [ |
| 45 | + "rimraf build docs" |
| 46 | + ], |
| 47 | + "lint": [ |
| 48 | + "jshint . --exclude-path .gitignore" |
| 49 | + ], |
| 50 | + "build": [ |
| 51 | + "copy-folder src/assets build/assets", |
| 52 | + "lessc src/style.less build/style.css", |
| 53 | + "uglifyjs src/app.js --output build/app.min.js", |
| 54 | + "replacer src/index.html build", |
| 55 | + "lightningcss build/style.css --output-file build/style.min.css --minify --bundle" |
| 56 | + ], |
| 57 | + "publish": [ |
| 58 | + "copy-folder build/assets docs/assets", |
| 59 | + "add-dist-header build/app.min.js docs", |
| 60 | + "add-dist-header build/style.min.css docs", |
| 61 | + "copy-file build/index.html --folder docs" |
| 62 | + ] |
| 63 | + }, |
| 64 | + "scripts": { |
| 65 | + "pretest": "run-scripts clean lint build publish", |
| 66 | + "test": "mocha spec", |
| 67 | + "validate": "html-validator docs" |
| 68 | + }, |
| 69 | + "dependencies": { |
| 70 | + "@fortawesome/fontawesome-free": "~7.2", |
| 71 | + "dna-dom": "~3.3", |
| 72 | + "fetch-json": "~3.5", |
| 73 | + "pretty-print-json": "~3.0", |
| 74 | + "web-ignition": "~2.5" |
| 75 | + }, |
| 76 | + "devDependencies": { |
| 77 | + "add-dist-header": "~1.6", |
| 78 | + "assert-deep-strict-equal": "~1.2", |
| 79 | + "copy-file-util": "~1.3", |
| 80 | + "copy-folder-util": "~1.2", |
| 81 | + "jshint": "~2.13", |
| 82 | + "less": "~4.6", |
| 83 | + "lightningcss-cli": "~1.32", |
| 84 | + "mocha": "~11.7", |
| 85 | + "replacer-util": "~1.6", |
| 86 | + "rimraf": "~6.1", |
| 87 | + "run-scripts-util": "~1.3", |
| 88 | + "uglify-js": "~3.19", |
| 89 | + "w3c-html-validator": "~2.2" |
| 90 | + } |
| 91 | +} |
0 commit comments