RFC6901 JSON Pointer implementation in OCaml using jsont

remove unused files

-11
doc/config.json
··· 1 - { 2 - "database": { 3 - "host": "localhost", 4 - "port": 5432, 5 - "credentials": { 6 - "username": "admin", 7 - "password": "secret" 8 - } 9 - }, 10 - "features": ["auth", "logging", "metrics"] 11 - }
-12
doc/rfc6901_example.json
··· 1 - { 2 - "foo": ["bar", "baz"], 3 - "": 0, 4 - "a/b": 1, 5 - "c%d": 2, 6 - "e^f": 3, 7 - "g|h": 4, 8 - "i\\j": 5, 9 - "k\"l": 6, 10 - " ": 7, 11 - "m~n": 8 12 - }