mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-08-23 14:22:24 +02:00
- 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>
25 lines
634 B
JSON
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"
|
|
}
|
|
}
|