Files
OSINT-Framework/package.json
T
s0lrayandPaperclip 40f4c0d70d Phase 1+2: Remove Bower, upgrade D3 dep to v7, fix npm scripts
- Delete bower.json (dead artifact; deps already managed by npm)
- Add bower_components and .bowerrc to .gitignore
- Upgrade d3 devDependency from ^3.5.16 to ^7.9.0
- Fix postinstall script path: node_modules/d3/dist/d3.min.js -> public/js/
- Fix start script: python -m SimpleHTTPServer -> python3 -m http.server 8000
- Update package-lock.json

Note: index.html still loads d3.v3.min.js; arf.js API migration is Phase 3.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-03-21 22:22:53 -04:00

25 lines
634 B
JSON

{
"name": "arf",
"version": "1.0.0",
"description": "Advanced Reconnaissance Framework",
"main": "public/index.html",
"scripts": {
"postinstall": "copyfiles -f ./node_modules/d3/dist/d3.min.js ./public/js/",
"start": "cd ./public; python3 -m http.server 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lockfale/ARF.git"
},
"author": "Justin Nordine (s0lray)",
"license": "",
"bugs": {
"url": "https://github.com/lockfale/ARF/issues"
},
"homepage": "https://github.com/lockfale/ARF#readme",
"devDependencies": {
"copyfiles": "^1.0.0",
"d3": "^7.9.0"
}
}