Changeset 59329aa for trip-planner-front/node_modules/node-forge
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/node-forge/package.json
rceaed42 r59329aa 1 1 { 2 "name": "node-forge", 3 "version": "0.10.0", 4 "description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", 5 "homepage": "https://github.com/digitalbazaar/forge", 2 "_args": [ 3 [ 4 "node-forge@0.10.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "node-forge@0.10.0", 10 "_id": "node-forge@0.10.0", 11 "_inBundle": false, 12 "_integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", 13 "_location": "/node-forge", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "node-forge@0.10.0", 19 "name": "node-forge", 20 "escapedName": "node-forge", 21 "rawSpec": "0.10.0", 22 "saveSpec": null, 23 "fetchSpec": "0.10.0" 24 }, 25 "_requiredBy": [ 26 "/selfsigned" 27 ], 28 "_resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", 29 "_spec": "0.10.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 6 31 "author": { 7 32 "name": "Digital Bazaar, Inc.", … … 9 34 "url": "http://digitalbazaar.com/" 10 35 }, 36 "browser": { 37 "buffer": false, 38 "crypto": false, 39 "process": false 40 }, 41 "bugs": { 42 "url": "https://github.com/digitalbazaar/forge/issues", 43 "email": "support@digitalbazaar.com" 44 }, 11 45 "contributors": [ 12 "Dave Longley <dlongley@digitalbazaar.com>", 13 "David I. Lehn <dlehn@digitalbazaar.com>", 14 "Stefan Siegl <stesie@brokenpipe.de>", 15 "Christoph Dorn <christoph@christophdorn.com>" 46 { 47 "name": "Dave Longley", 48 "email": "dlongley@digitalbazaar.com" 49 }, 50 { 51 "name": "David I. Lehn", 52 "email": "dlehn@digitalbazaar.com" 53 }, 54 { 55 "name": "Stefan Siegl", 56 "email": "stesie@brokenpipe.de" 57 }, 58 { 59 "name": "Christoph Dorn", 60 "email": "christoph@christophdorn.com" 61 } 16 62 ], 63 "description": "JavaScript implementations of network transports, cryptography, ciphers, PKI, message digests, and various utilities.", 17 64 "devDependencies": { 18 65 "browserify": "^16.5.2", … … 44 91 "worker-loader": "^2.0.0" 45 92 }, 46 "repository": { 47 "type": "git", 48 "url": "https://github.com/digitalbazaar/forge" 93 "engines": { 94 "node": ">= 6.0.0" 49 95 }, 50 "bugs": {51 "url": "https://github.com/digitalbazaar/forge/issues",52 "email": "support@digitalbazaar.com"53 },54 "license": "(BSD-3-Clause OR GPL-2.0)",55 "main": "lib/index.js",56 96 "files": [ 57 97 "lib/*.js", … … 60 100 "dist/*.min.js.map" 61 101 ], 62 "engines": { 63 "node": ">= 6.0.0" 102 "homepage": "https://github.com/digitalbazaar/forge", 103 "jspm": { 104 "format": "amd" 64 105 }, 65 106 "keywords": [ … … 92 133 "x509" 93 134 ], 94 "scripts": { 95 "prepublish": "npm run build", 96 "build": "webpack", 97 "test-build": "webpack --config webpack-tests.config.js", 98 "test": "cross-env NODE_ENV=test mocha -t 30000 -R ${REPORTER:-spec} tests/unit/index.js", 99 "test-karma": "karma start", 100 "test-karma-sauce": "karma start karma-sauce.conf", 101 "test-server": "node tests/server.js", 102 "test-server-ws": "node tests/websockets/server-ws.js", 103 "test-server-webid": "node tests/websockets/server-webid.js", 104 "coverage": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm test", 105 "coverage-report": "nyc report", 106 "lint": "eslint *.js lib/*.js tests/*.js tests/**/*.js examples/*.js flash/*.js" 107 }, 135 "license": "(BSD-3-Clause OR GPL-2.0)", 136 "main": "lib/index.js", 137 "name": "node-forge", 108 138 "nyc": { 109 139 "exclude": [ … … 111 141 ] 112 142 }, 113 "jspm": { 114 "format": "amd" 143 "repository": { 144 "type": "git", 145 "url": "git+https://github.com/digitalbazaar/forge.git" 115 146 }, 116 "browser": { 117 "buffer": false, 118 "crypto": false, 119 "process": false 120 } 147 "scripts": { 148 "build": "webpack", 149 "coverage": "rm -rf coverage && nyc --reporter=lcov --reporter=text-summary npm test", 150 "coverage-report": "nyc report", 151 "lint": "eslint *.js lib/*.js tests/*.js tests/**/*.js examples/*.js flash/*.js", 152 "prepublish": "npm run build", 153 "test": "cross-env NODE_ENV=test mocha -t 30000 -R ${REPORTER:-spec} tests/unit/index.js", 154 "test-build": "webpack --config webpack-tests.config.js", 155 "test-karma": "karma start", 156 "test-karma-sauce": "karma start karma-sauce.conf", 157 "test-server": "node tests/server.js", 158 "test-server-webid": "node tests/websockets/server-webid.js", 159 "test-server-ws": "node tests/websockets/server-ws.js" 160 }, 161 "version": "0.10.0" 121 162 }
Note:
See TracChangeset
for help on using the changeset viewer.