Changeset 59329aa for trip-planner-front/node_modules/esrecurse
- Timestamp:
- 11/23/21 14:58:44 (3 years ago)
- Branches:
- master
- Children:
- e29cc2e
- Parents:
- ceaed42
- Location:
- trip-planner-front/node_modules/esrecurse
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trip-planner-front/node_modules/esrecurse/node_modules/estraverse/package.json
rceaed42 r59329aa 1 1 { 2 "name": "estraverse", 2 "_args": [ 3 [ 4 "estraverse@5.2.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "estraverse@5.2.0", 10 "_id": "estraverse@5.2.0", 11 "_inBundle": false, 12 "_integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", 13 "_location": "/esrecurse/estraverse", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "estraverse@5.2.0", 19 "name": "estraverse", 20 "escapedName": "estraverse", 21 "rawSpec": "5.2.0", 22 "saveSpec": null, 23 "fetchSpec": "5.2.0" 24 }, 25 "_requiredBy": [ 26 "/esrecurse" 27 ], 28 "_resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", 29 "_spec": "5.2.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "bugs": { 32 "url": "https://github.com/estools/estraverse/issues" 33 }, 3 34 "description": "ECMAScript JS AST traversal functions", 4 "homepage": "https://github.com/estools/estraverse",5 "main": "estraverse.js",6 "version": "5.2.0",7 "engines": {8 "node": ">=4.0"9 },10 "maintainers": [11 {12 "name": "Yusuke Suzuki",13 "email": "utatane.tea@gmail.com",14 "web": "http://github.com/Constellation"15 }16 ],17 "repository": {18 "type": "git",19 "url": "http://github.com/estools/estraverse.git"20 },21 35 "devDependencies": { 22 36 "babel-preset-env": "^1.6.1", … … 32 46 "mocha": "^2.1.0" 33 47 }, 48 "engines": { 49 "node": ">=4.0" 50 }, 51 "homepage": "https://github.com/estools/estraverse", 34 52 "license": "BSD-2-Clause", 53 "main": "estraverse.js", 54 "maintainers": [ 55 { 56 "name": "Yusuke Suzuki", 57 "email": "utatane.tea@gmail.com", 58 "url": "http://github.com/Constellation" 59 } 60 ], 61 "name": "estraverse", 62 "repository": { 63 "type": "git", 64 "url": "git+ssh://git@github.com/estools/estraverse.git" 65 }, 35 66 "scripts": { 67 "lint": "jshint estraverse.js", 36 68 "test": "npm run-script lint && npm run-script unit-test", 37 "lint": "jshint estraverse.js",38 69 "unit-test": "mocha --compilers js:babel-register" 39 } 70 }, 71 "version": "5.2.0" 40 72 } -
trip-planner-front/node_modules/esrecurse/package.json
rceaed42 r59329aa 1 1 { 2 "name": "esrecurse", 3 "description": "ECMAScript AST recursive visitor", 4 "homepage": "https://github.com/estools/esrecurse", 5 "main": "esrecurse.js", 6 "version": "4.3.0", 7 "engines": { 8 "node": ">=4.0" 2 "_args": [ 3 [ 4 "esrecurse@4.3.0", 5 "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front" 6 ] 7 ], 8 "_development": true, 9 "_from": "esrecurse@4.3.0", 10 "_id": "esrecurse@4.3.0", 11 "_inBundle": false, 12 "_integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 13 "_location": "/esrecurse", 14 "_phantomChildren": {}, 15 "_requested": { 16 "type": "version", 17 "registry": true, 18 "raw": "esrecurse@4.3.0", 19 "name": "esrecurse", 20 "escapedName": "esrecurse", 21 "rawSpec": "4.3.0", 22 "saveSpec": null, 23 "fetchSpec": "4.3.0" 9 24 }, 10 "maintainers": [ 11 { 12 "name": "Yusuke Suzuki", 13 "email": "utatane.tea@gmail.com", 14 "web": "https://github.com/Constellation" 15 } 25 "_requiredBy": [ 26 "/eslint-scope" 16 27 ], 17 "repository": { 18 "type": "git", 19 "url": "https://github.com/estools/esrecurse.git" 28 "_resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 29 "_spec": "4.3.0", 30 "_where": "C:\\Users\\DELL\\Desktop\\bachelor-thesis\\trip-planner-front", 31 "babel": { 32 "presets": [ 33 "es2015" 34 ] 35 }, 36 "bugs": { 37 "url": "https://github.com/estools/esrecurse/issues" 20 38 }, 21 39 "dependencies": { 22 40 "estraverse": "^5.2.0" 23 41 }, 42 "description": "ECMAScript AST recursive visitor", 24 43 "devDependencies": { 25 44 "babel-cli": "^6.24.1", … … 39 58 "minimist": "^1.1.0" 40 59 }, 60 "engines": { 61 "node": ">=4.0" 62 }, 63 "homepage": "https://github.com/estools/esrecurse", 41 64 "license": "BSD-2-Clause", 65 "main": "esrecurse.js", 66 "maintainers": [ 67 { 68 "name": "Yusuke Suzuki", 69 "email": "utatane.tea@gmail.com", 70 "url": "https://github.com/Constellation" 71 } 72 ], 73 "name": "esrecurse", 74 "repository": { 75 "type": "git", 76 "url": "git+https://github.com/estools/esrecurse.git" 77 }, 42 78 "scripts": { 79 "lint": "gulp lint", 43 80 "test": "gulp travis", 44 "unit-test": "gulp test", 45 "lint": "gulp lint" 81 "unit-test": "gulp test" 46 82 }, 47 "babel": { 48 "presets": [ 49 "es2015" 50 ] 51 } 83 "version": "4.3.0" 52 84 }
Note:
See TracChangeset
for help on using the changeset viewer.